From c07fc4c96a41728bd172656342e69f6069996265 Mon Sep 17 00:00:00 2001 From: L_DelOff Date: Tue, 30 Dec 2025 11:54:07 +0300 Subject: [PATCH] =?UTF-8?q?=D0=BF=D1=83=20=D0=BF=D1=83=20=D0=BF=D1=83?= =?UTF-8?q?=D1=83=D1=83?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- tool/current-time/pom.xml | 16 +++ .../currenttime/CurrentTimeApplication.java | 13 +++ .../src/main/resources/application.properties | 1 + .../CurrentTimeApplicationTests.java | 13 +++ tool/pom.xml | 101 ++++++++++++++++++ 5 files changed, 144 insertions(+) create mode 100644 tool/current-time/pom.xml create mode 100644 tool/current-time/src/main/java/ru/ldeloff/currenttime/CurrentTimeApplication.java create mode 100644 tool/current-time/src/main/resources/application.properties create mode 100644 tool/current-time/src/test/java/ru/ldeloff/currenttime/CurrentTimeApplicationTests.java create mode 100644 tool/pom.xml 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 + + + + + + + +