commit 497bc1a4aa41ca1185981aa0b4b0e1af50568d1e Author: Eduard Kuksa Date: Thu Jan 16 21:20:07 2025 +0700 first commit diff --git a/pom.xml b/pom.xml new file mode 100644 index 0000000..d839442 --- /dev/null +++ b/pom.xml @@ -0,0 +1,59 @@ + + + 4.0.0 + + org.springframework.boot + spring-boot-starter-parent + 3.4.1 + + + dev.kuksa + spring-demo + 0.0.1-SNAPSHOT + spring-demo + spring-demo + + + + + + + + + + + + + + + 23 + + + + org.springframework.boot + spring-boot-starter-web + + + + com.h2database + h2 + runtime + + + org.springframework.boot + spring-boot-starter-test + test + + + + + + + org.springframework.boot + spring-boot-maven-plugin + + + + + diff --git a/src/main/java/dev/kuksa/springdemo/SpringDemoApplication.java b/src/main/java/dev/kuksa/springdemo/SpringDemoApplication.java new file mode 100644 index 0000000..c4f112d --- /dev/null +++ b/src/main/java/dev/kuksa/springdemo/SpringDemoApplication.java @@ -0,0 +1,13 @@ +package dev.kuksa.springdemo; + +import org.springframework.boot.SpringApplication; +import org.springframework.boot.autoconfigure.SpringBootApplication; + +@SpringBootApplication +public class SpringDemoApplication { + + public static void main(String[] args) { + SpringApplication.run(SpringDemoApplication.class, args); + } + +} diff --git a/src/test/java/dev/kuksa/springdemo/SpringDemoApplicationTests.java b/src/test/java/dev/kuksa/springdemo/SpringDemoApplicationTests.java new file mode 100644 index 0000000..e417dbb --- /dev/null +++ b/src/test/java/dev/kuksa/springdemo/SpringDemoApplicationTests.java @@ -0,0 +1,13 @@ +package dev.kuksa.springdemo; + +import org.junit.jupiter.api.Test; +import org.springframework.boot.test.context.SpringBootTest; + +@SpringBootTest +class SpringDemoApplicationTests { + + @Test + void contextLoads() { + } + +}