From ee8180dde4dff8f2fc5177177c6cdfacdc25e545 Mon Sep 17 00:00:00 2001 From: L_DelOff Date: Sat, 5 Aug 2023 16:15:14 +0300 Subject: [PATCH] Init commit --- pom.xml | 54 +++++++++++++++++++ .../ServerMonitorBotApplication.java | 13 +++++ .../ServerMonitorBotApplicationTests.java | 13 +++++ 3 files changed, 80 insertions(+) create mode 100644 pom.xml create mode 100644 src/main/java/ru/ldeloff/servermonitorbot/ServerMonitorBotApplication.java create mode 100644 src/test/java/ru/ldeloff/servermonitorbot/ServerMonitorBotApplicationTests.java 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() { + } + +}