diff --git a/tool/current-time/pom.xml b/tool/current-time/pom.xml new file mode 100644 index 0000000..0729f16 --- /dev/null +++ b/tool/current-time/pom.xml @@ -0,0 +1,16 @@ + + + 4.0.0 + + ru.ldeloff + tool + 1.0-SNAPSHOT + + + current-time + 0.0.1-SNAPSHOT + current-time + current-time + + diff --git a/tool/current-time/src/main/java/ru/ldeloff/currenttime/CurrentTimeApplication.java b/tool/current-time/src/main/java/ru/ldeloff/currenttime/CurrentTimeApplication.java new file mode 100644 index 0000000..0eb3f8f --- /dev/null +++ b/tool/current-time/src/main/java/ru/ldeloff/currenttime/CurrentTimeApplication.java @@ -0,0 +1,13 @@ +package ru.ldeloff.currenttime; + +import org.springframework.boot.SpringApplication; +import org.springframework.boot.autoconfigure.SpringBootApplication; + +@SpringBootApplication +public class CurrentTimeApplication { + + public static void main(String[] args) { + SpringApplication.run(CurrentTimeApplication.class, args); + } + +} diff --git a/tool/current-time/src/main/resources/application.properties b/tool/current-time/src/main/resources/application.properties new file mode 100644 index 0000000..661325f --- /dev/null +++ b/tool/current-time/src/main/resources/application.properties @@ -0,0 +1 @@ +spring.application.name=current-time diff --git a/tool/current-time/src/test/java/ru/ldeloff/currenttime/CurrentTimeApplicationTests.java b/tool/current-time/src/test/java/ru/ldeloff/currenttime/CurrentTimeApplicationTests.java new file mode 100644 index 0000000..b8925b1 --- /dev/null +++ b/tool/current-time/src/test/java/ru/ldeloff/currenttime/CurrentTimeApplicationTests.java @@ -0,0 +1,13 @@ +package ru.ldeloff.currenttime; + +import org.junit.jupiter.api.Test; +import org.springframework.boot.test.context.SpringBootTest; + +@SpringBootTest +class CurrentTimeApplicationTests { + + @Test + void contextLoads() { + } + +} diff --git a/tool/pom.xml b/tool/pom.xml new file mode 100644 index 0000000..accb03c --- /dev/null +++ b/tool/pom.xml @@ -0,0 +1,101 @@ + + + 4.0.0 + + + current-time + + + + org.springframework.boot + spring-boot-starter-parent + 3.5.9 + + + + ru.ldeloff + tool + 0.0.1-SNAPSHOT + tool + tool + pom + + + + + + + + 25 + 1.1.2 + + + + + org.springframework.boot + spring-boot-starter-webflux + + + org.springframework.ai + spring-ai-starter-mcp-server-webflux + + + + org.projectlombok + lombok + true + + + org.springframework.boot + spring-boot-starter-test + test + + + io.projectreactor + reactor-test + test + + + + + + org.springframework.ai + spring-ai-bom + ${spring-ai.version} + pom + import + + + + + + + + org.apache.maven.plugins + maven-compiler-plugin + + + + org.projectlombok + lombok + + + + + + org.springframework.boot + spring-boot-maven-plugin + + + + org.projectlombok + lombok + + + + + + + +