diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..6b8ba9e --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +.idea +*/target \ No newline at end of file diff --git a/lark/pom.xml b/lark/pom.xml new file mode 100644 index 0000000..96a347e --- /dev/null +++ b/lark/pom.xml @@ -0,0 +1,27 @@ + + + 4.0.0 + + cn.hezhaohui + lark-panel + 1.0.0 + + + lark + + + + org.springframework.boot + spring-boot-starter-web + + + + + 21 + 21 + UTF-8 + + + \ No newline at end of file diff --git a/lark/src/main/java/cn/hezhaohui/lark/Application.java b/lark/src/main/java/cn/hezhaohui/lark/Application.java new file mode 100644 index 0000000..ac75828 --- /dev/null +++ b/lark/src/main/java/cn/hezhaohui/lark/Application.java @@ -0,0 +1,11 @@ +package cn.hezhaohui.lark; + +import org.springframework.boot.SpringApplication; +import org.springframework.boot.autoconfigure.SpringBootApplication; + +@SpringBootApplication +public class Application { + public static void main(String[] args) { + SpringApplication.run(Application.class, args); + } +} diff --git a/pom.xml b/pom.xml new file mode 100644 index 0000000..d5a7aed --- /dev/null +++ b/pom.xml @@ -0,0 +1,61 @@ + + + 4.0.0 + + cn.hezhaohui + lark-panel + 1.0.0 + pom + + all-in-one panel + + + + lark + + + + + + + org.springframework.boot + spring-boot-starter-web + 3.2.2 + + + org.springframework.boot + spring-boot-maven-plugin + 3.2.2 + + + org.springframework.boot + spring-boot-starter-test + 3.2.2 + + + org.projectlombok + lombok + 1.18.30 + + + + + + + + + org.springframework.boot + spring-boot-maven-plugin + + + + + + + 21 + UTF-8 + UTF-8 + + \ No newline at end of file