From 09f7a74cfcde13c0ca77d57ff9e1d09ece06ea15 Mon Sep 17 00:00:00 2001 From: zhuangtianxiang <2913129173@qq.com> Date: Thu, 17 Apr 2025 18:52:27 +0800 Subject: [PATCH] first commit --- .gitignore | 33 +++++++++ README.md | 0 pom.xml | 72 +++++++++++++++++++ .../java/com/rayleap/RayLeapApplication.java | 13 ++++ .../com/rayleap/RayLeapApplicationTests.java | 13 ++++ 5 files changed, 131 insertions(+) create mode 100644 .gitignore create mode 100644 README.md create mode 100644 pom.xml create mode 100644 src/main/java/com/rayleap/RayLeapApplication.java create mode 100644 src/test/java/com/rayleap/RayLeapApplicationTests.java 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() { + } + +}