From 7c3ea34047b5ef87efaa7c7cee7a6094478efabc Mon Sep 17 00:00:00 2001 From: Michael O'Brien Date: Mon, 1 Mar 2021 21:17:18 -0500 Subject: [PATCH] #1 - initial springboot archetype --- pom.xml | 93 +++++++++++++++++++ .../eventstream/field/FieldApplication.java | 13 +++ src/main/resources/application.properties | 1 + .../field/FieldApplicationTests.java | 13 +++ 4 files changed, 120 insertions(+) create mode 100644 pom.xml create mode 100644 src/main/java/systems/eventstream/field/FieldApplication.java create mode 100644 src/main/resources/application.properties create mode 100644 src/test/java/systems/eventstream/field/FieldApplicationTests.java diff --git a/pom.xml b/pom.xml new file mode 100644 index 0000000..df03306 --- /dev/null +++ b/pom.xml @@ -0,0 +1,93 @@ + + + 4.0.0 + + org.springframework.boot + spring-boot-starter-parent + 2.4.3 + + + systems.eventstream + field + 0.0.1-SNAPSHOT + Field + Field EventStream + + 11 + 2.3.1 + + + + org.springframework.boot + spring-boot-starter-actuator + + + org.springframework.boot + spring-boot-starter-data-jpa + + + org.springframework.boot + spring-boot-starter-security + + + org.springframework.boot + spring-boot-starter-thymeleaf + + + org.springframework.boot + spring-boot-starter-web + + + de.codecentric + spring-boot-admin-starter-server + + + org.thymeleaf.extras + thymeleaf-extras-springsecurity5 + + + + org.springframework.boot + spring-boot-devtools + runtime + true + + + com.h2database + h2 + runtime + + + org.springframework.boot + spring-boot-starter-test + test + + + org.springframework.security + spring-security-test + test + + + + + + de.codecentric + spring-boot-admin-dependencies + ${spring-boot-admin.version} + pom + import + + + + + + + + org.springframework.boot + spring-boot-maven-plugin + + + + + diff --git a/src/main/java/systems/eventstream/field/FieldApplication.java b/src/main/java/systems/eventstream/field/FieldApplication.java new file mode 100644 index 0000000..b16e55a --- /dev/null +++ b/src/main/java/systems/eventstream/field/FieldApplication.java @@ -0,0 +1,13 @@ +package systems.eventstream.field; + +import org.springframework.boot.SpringApplication; +import org.springframework.boot.autoconfigure.SpringBootApplication; + +@SpringBootApplication +public class FieldApplication { + + public static void main(String[] args) { + SpringApplication.run(FieldApplication.class, args); + } + +} diff --git a/src/main/resources/application.properties b/src/main/resources/application.properties new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/src/main/resources/application.properties @@ -0,0 +1 @@ + diff --git a/src/test/java/systems/eventstream/field/FieldApplicationTests.java b/src/test/java/systems/eventstream/field/FieldApplicationTests.java new file mode 100644 index 0000000..6f0af2e --- /dev/null +++ b/src/test/java/systems/eventstream/field/FieldApplicationTests.java @@ -0,0 +1,13 @@ +package systems.eventstream.field; + +import org.junit.jupiter.api.Test; +import org.springframework.boot.test.context.SpringBootTest; + +@SpringBootTest +class FieldApplicationTests { + + @Test + void contextLoads() { + } + +}