diff --git a/na-core/pom.xml b/na-core/pom.xml new file mode 100644 index 0000000..c8b6b78 --- /dev/null +++ b/na-core/pom.xml @@ -0,0 +1,96 @@ + + + 4.0.0 + + org.springframework.boot + spring-boot-starter-parent + 3.5.3 + + + com.nailart + na-core + 0.0.1-SNAPSHOT + na-core + na-core + + + + + + + + + + + + + + + 21 + + + + org.springframework.boot + spring-boot-starter-data-jdbc + + + org.springframework.boot + spring-boot-starter-data-redis + + + org.springframework.boot + spring-boot-starter-jdbc + + + org.springframework.boot + spring-boot-starter-web + + + + com.mysql + mysql-connector-j + runtime + + + org.projectlombok + lombok + true + + + org.springframework.boot + spring-boot-starter-test + test + + + + + + + org.apache.maven.plugins + maven-compiler-plugin + + + + org.projectlombok + lombok + + + + + + org.springframework.boot + spring-boot-maven-plugin + + + + org.projectlombok + lombok + + + + + + + + diff --git a/na-core/src/main/java/com/nailart/NaCoreApplication.java b/na-core/src/main/java/com/nailart/NaCoreApplication.java new file mode 100644 index 0000000..2e545a9 --- /dev/null +++ b/na-core/src/main/java/com/nailart/NaCoreApplication.java @@ -0,0 +1,13 @@ +package com.nailart; + +import org.springframework.boot.SpringApplication; +import org.springframework.boot.autoconfigure.SpringBootApplication; + +@SpringBootApplication +public class NaCoreApplication { + + public static void main(String[] args) { + SpringApplication.run(NaCoreApplication.class, args); + } + +} diff --git a/na-core/src/main/resources/application.properties b/na-core/src/main/resources/application.properties new file mode 100644 index 0000000..ce92952 --- /dev/null +++ b/na-core/src/main/resources/application.properties @@ -0,0 +1 @@ +spring.application.name=na-core diff --git a/na-core/src/test/java/com/nailart/NaCoreApplicationTests.java b/na-core/src/test/java/com/nailart/NaCoreApplicationTests.java new file mode 100644 index 0000000..e33fac2 --- /dev/null +++ b/na-core/src/test/java/com/nailart/NaCoreApplicationTests.java @@ -0,0 +1,13 @@ +package com.nailart; + +import org.junit.jupiter.api.Test; +import org.springframework.boot.test.context.SpringBootTest; + +@SpringBootTest +class NaCoreApplicationTests { + + @Test + void contextLoads() { + } + +}