diff --git a/pom.xml b/pom.xml new file mode 100644 index 0000000..df45b74 --- /dev/null +++ b/pom.xml @@ -0,0 +1,66 @@ + + + 4.0.0 + + + org.springframework.boot + spring-boot-starter-parent + 3.2.5 + + + + com.label + label-backend + 1.0.0-SNAPSHOT + jar + + + 17 + 17 + 17 + UTF-8 + + + + + + org.springframework.boot + spring-boot-starter-web + + + + + org.projectlombok + lombok + true + + + + + org.springframework.boot + spring-boot-starter-test + test + + + + + + + org.springframework.boot + spring-boot-maven-plugin + + + + org.projectlombok + lombok + + + + + + + + \ No newline at end of file diff --git a/src/main/java/com/label/LabelBackendApplication.java b/src/main/java/com/label/LabelBackendApplication.java new file mode 100644 index 0000000..a3650bd --- /dev/null +++ b/src/main/java/com/label/LabelBackendApplication.java @@ -0,0 +1,12 @@ +package com.label; + +import org.springframework.boot.SpringApplication; +import org.springframework.boot.autoconfigure.SpringBootApplication; + +@SpringBootApplication +public class LabelBackendApplication { + + public static void main(String[] args) { + SpringApplication.run(LabelBackendApplication.class, args); + } +} diff --git a/src/test/java/com/label/LabelBackendApplicationTests.java b/src/test/java/com/label/LabelBackendApplicationTests.java new file mode 100644 index 0000000..f802f44 --- /dev/null +++ b/src/test/java/com/label/LabelBackendApplicationTests.java @@ -0,0 +1,7 @@ +package com.label; + +import org.springframework.boot.test.context.SpringBootTest; + +@SpringBootTest +class LabelBackendApplicationTests { +}