diff --git a/aitools/pom.xml b/aitools/pom.xml new file mode 100644 index 0000000..2ae4f67 --- /dev/null +++ b/aitools/pom.xml @@ -0,0 +1,79 @@ + + + 4.0.0 + + org.springframework.boot + spring-boot-starter-parent + 4.0.1 + + + ru.ldeloff + aitools + 0.0.1-SNAPSHOT + aitools + aitools + + + + + + + + + + + + + + + 25 + + + + org.springframework.boot + spring-boot-starter-webflux + + + + org.projectlombok + lombok + true + + + org.springframework.boot + spring-boot-starter-webflux-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/aitools/src/main/java/ru/ldeloff/aitools/AitoolsApplication.java b/aitools/src/main/java/ru/ldeloff/aitools/AitoolsApplication.java new file mode 100644 index 0000000..dae30b5 --- /dev/null +++ b/aitools/src/main/java/ru/ldeloff/aitools/AitoolsApplication.java @@ -0,0 +1,13 @@ +package ru.ldeloff.aitools; + +import org.springframework.boot.SpringApplication; +import org.springframework.boot.autoconfigure.SpringBootApplication; + +@SpringBootApplication +public class AitoolsApplication { + + public static void main(String[] args) { + SpringApplication.run(AitoolsApplication.class, args); + } + +} diff --git a/aitools/src/main/java/ru/ldeloff/aitools/datetime/controller/TimeController.java b/aitools/src/main/java/ru/ldeloff/aitools/datetime/controller/TimeController.java new file mode 100644 index 0000000..4f56cd3 --- /dev/null +++ b/aitools/src/main/java/ru/ldeloff/aitools/datetime/controller/TimeController.java @@ -0,0 +1,4 @@ +package ru.ldeloff.aitools.datetime.controller; + +public class TimeController { +} diff --git a/aitools/src/main/resources/application.properties b/aitools/src/main/resources/application.properties new file mode 100644 index 0000000..061f835 --- /dev/null +++ b/aitools/src/main/resources/application.properties @@ -0,0 +1 @@ +spring.application.name=aitools diff --git a/tool/current-time/src/test/java/ru/ldeloff/currenttime/CurrentTimeApplicationTests.java b/aitools/src/test/java/ru/ldeloff/aitools/AitoolsApplicationTests.java similarity index 51% rename from tool/current-time/src/test/java/ru/ldeloff/currenttime/CurrentTimeApplicationTests.java rename to aitools/src/test/java/ru/ldeloff/aitools/AitoolsApplicationTests.java index b8925b1..7ee1edf 100644 --- a/tool/current-time/src/test/java/ru/ldeloff/currenttime/CurrentTimeApplicationTests.java +++ b/aitools/src/test/java/ru/ldeloff/aitools/AitoolsApplicationTests.java @@ -1,13 +1,13 @@ -package ru.ldeloff.currenttime; +package ru.ldeloff.aitools; import org.junit.jupiter.api.Test; import org.springframework.boot.test.context.SpringBootTest; @SpringBootTest -class CurrentTimeApplicationTests { +class AitoolsApplicationTests { - @Test - void contextLoads() { - } + @Test + void contextLoads() { + } }