commit 09f7a74cfcde13c0ca77d57ff9e1d09ece06ea15 Author: zhuangtianxiang <2913129173@qq.com> Date: Thu Apr 17 18:52:27 2025 +0800 first commit diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..549e00a --- /dev/null +++ b/.gitignore @@ -0,0 +1,33 @@ +HELP.md +target/ +!.mvn/wrapper/maven-wrapper.jar +!**/src/main/**/target/ +!**/src/test/**/target/ + +### STS ### +.apt_generated +.classpath +.factorypath +.project +.settings +.springBeans +.sts4-cache + +### IntelliJ IDEA ### +.idea +*.iws +*.iml +*.ipr + +### NetBeans ### +/nbproject/private/ +/nbbuild/ +/dist/ +/nbdist/ +/.nb-gradle/ +build/ +!**/src/main/**/build/ +!**/src/test/**/build/ + +### VS Code ### +.vscode/ diff --git a/README.md b/README.md new file mode 100644 index 0000000..e69de29 diff --git a/pom.xml b/pom.xml new file mode 100644 index 0000000..98777b4 --- /dev/null +++ b/pom.xml @@ -0,0 +1,72 @@ + + + 4.0.0 + com.RayLeap + RayLeap + 0.0.1-SNAPSHOT + RayLeap + RayLeap + + 17 + UTF-8 + UTF-8 + 3.0.2 + + + + org.springframework.boot + spring-boot-starter-web + + + + org.springframework.boot + spring-boot-starter-test + test + + + + + + org.springframework.boot + spring-boot-dependencies + ${spring-boot.version} + pom + import + + + + + + + + org.apache.maven.plugins + maven-compiler-plugin + 3.8.1 + + 17 + 17 + UTF-8 + + + + org.springframework.boot + spring-boot-maven-plugin + ${spring-boot.version} + + com.rayleap.RayLeapApplication + true + + + + repackage + + repackage + + + + + + + + diff --git a/src/main/java/com/rayleap/RayLeapApplication.java b/src/main/java/com/rayleap/RayLeapApplication.java new file mode 100644 index 0000000..3ded327 --- /dev/null +++ b/src/main/java/com/rayleap/RayLeapApplication.java @@ -0,0 +1,13 @@ +package com.rayleap; + +import org.springframework.boot.SpringApplication; +import org.springframework.boot.autoconfigure.SpringBootApplication; + +@SpringBootApplication +public class RayLeapApplication { + + public static void main(String[] args) { + SpringApplication.run(RayLeapApplication.class, args); + } + +} diff --git a/src/test/java/com/rayleap/RayLeapApplicationTests.java b/src/test/java/com/rayleap/RayLeapApplicationTests.java new file mode 100644 index 0000000..c44a46a --- /dev/null +++ b/src/test/java/com/rayleap/RayLeapApplicationTests.java @@ -0,0 +1,13 @@ +package com.rayleap; + +import org.junit.jupiter.api.Test; +import org.springframework.boot.test.context.SpringBootTest; + +@SpringBootTest +class RayLeapApplicationTests { + + @Test + void contextLoads() { + } + +}