commit ee8180dde4dff8f2fc5177177c6cdfacdc25e545 Author: L_DelOff Date: Sat Aug 5 16:15:14 2023 +0300 Init commit diff --git a/pom.xml b/pom.xml new file mode 100644 index 0000000..e3ef3e0 --- /dev/null +++ b/pom.xml @@ -0,0 +1,54 @@ + + + 4.0.0 + + org.springframework.boot + spring-boot-starter-parent + 3.1.2 + + + ru.ldeloff + ServerMonitorBot + 0.0.1-SNAPSHOT + ServerMonitorBot + ServerMonitorBot + + 17 + + + + org.springframework.boot + spring-boot-starter + + + + org.projectlombok + lombok + true + + + org.springframework.boot + spring-boot-starter-test + test + + + + + + + org.springframework.boot + spring-boot-maven-plugin + + + + org.projectlombok + lombok + + + + + + + + diff --git a/src/main/java/ru/ldeloff/servermonitorbot/ServerMonitorBotApplication.java b/src/main/java/ru/ldeloff/servermonitorbot/ServerMonitorBotApplication.java new file mode 100644 index 0000000..f6bd3cc --- /dev/null +++ b/src/main/java/ru/ldeloff/servermonitorbot/ServerMonitorBotApplication.java @@ -0,0 +1,13 @@ +package ru.ldeloff.servermonitorbot; + +import org.springframework.boot.SpringApplication; +import org.springframework.boot.autoconfigure.SpringBootApplication; + +@SpringBootApplication +public class ServerMonitorBotApplication { + + public static void main(String[] args) { + SpringApplication.run(ServerMonitorBotApplication.class, args); + } + +} diff --git a/src/test/java/ru/ldeloff/servermonitorbot/ServerMonitorBotApplicationTests.java b/src/test/java/ru/ldeloff/servermonitorbot/ServerMonitorBotApplicationTests.java new file mode 100644 index 0000000..4d2fd6a --- /dev/null +++ b/src/test/java/ru/ldeloff/servermonitorbot/ServerMonitorBotApplicationTests.java @@ -0,0 +1,13 @@ +package ru.ldeloff.servermonitorbot; + +import org.junit.jupiter.api.Test; +import org.springframework.boot.test.context.SpringBootTest; + +@SpringBootTest +class ServerMonitorBotApplicationTests { + + @Test + void contextLoads() { + } + +}