From 8b2d3a409cb006c1b2ce81223ef186dcfd6c3bdd Mon Sep 17 00:00:00 2001 From: Wonder Date: Mon, 27 Oct 2025 15:02:08 +0800 Subject: [PATCH] =?UTF-8?q?=20=F0=9F=94=A7Chore:=20=E9=A1=B9=E7=9B=AE?= =?UTF-8?q?=E5=88=9D=E5=A7=8B=E5=8C=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitignore | 2 + lark/pom.xml | 27 ++++++++ .../java/cn/hezhaohui/lark/Application.java | 11 ++++ pom.xml | 61 +++++++++++++++++++ 4 files changed, 101 insertions(+) create mode 100644 .gitignore create mode 100644 lark/pom.xml create mode 100644 lark/src/main/java/cn/hezhaohui/lark/Application.java create mode 100644 pom.xml 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