From 30b4caa47225ebb4e3ce7454659fd3bf71a9a40f Mon Sep 17 00:00:00 2001 From: Kai Moritz Date: Mon, 18 Sep 2023 20:50:13 +0200 Subject: [PATCH] Initial of an empty project with sub-projects --- .gitignore | 3 +++ boot/pom.xml | 43 +++++++++++++++++++++++++++++++++++++++++ lib/pom.xml | 34 +++++++++++++++++++++++++++++++++ pom.xml | 51 +++++++++++++++++++++++++++++++++++++++++++++++++ spring/pom.xml | 52 ++++++++++++++++++++++++++++++++++++++++++++++++++ 5 files changed, 183 insertions(+) create mode 100644 .gitignore create mode 100644 boot/pom.xml create mode 100644 lib/pom.xml create mode 100644 pom.xml create mode 100644 spring/pom.xml diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..612c5bc --- /dev/null +++ b/.gitignore @@ -0,0 +1,3 @@ +target +.idea +*.iml diff --git a/boot/pom.xml b/boot/pom.xml new file mode 100644 index 0000000..483e2f1 --- /dev/null +++ b/boot/pom.xml @@ -0,0 +1,43 @@ + + + + 4.0.0 + + + de.juplo.boot + conditional + 1.0.0-SNAPSHOT + + + de.juplo.boot + conditional-boot + 1.0.0-SNAPSHOT + Conditional Annotations - SpringBoot-App + Experiments with Conditional Annotations + + + + org.springframework.boot + spring-boot-starter + + + de.juplo.boot + conditional-lib + + + org.projectlombok + lombok + + + + + + + org.springframework.boot + spring-boot-maven-plugin + + + + + diff --git a/lib/pom.xml b/lib/pom.xml new file mode 100644 index 0000000..551fc34 --- /dev/null +++ b/lib/pom.xml @@ -0,0 +1,34 @@ + + + + 4.0.0 + + + de.juplo.boot + conditional + 1.0.0-SNAPSHOT + + + de.juplo.boot + conditional-lib + 1.0.0-SNAPSHOT + Conditional Annotations - Library + Experiments with Conditional Annotations + + + + org.springframework.boot + spring-boot-autoconfigure + + + org.slf4j + slf4j-api + + + org.projectlombok + lombok + + + + diff --git a/pom.xml b/pom.xml new file mode 100644 index 0000000..8bf1793 --- /dev/null +++ b/pom.xml @@ -0,0 +1,51 @@ + + + + 4.0.0 + + + org.springframework.boot + spring-boot-starter-parent + 3.1.3 + + + + de.juplo.boot + conditional + 1.0.0-SNAPSHOT + pom + Conditional Annotations + Experiments with Conditional Annotations + + + 17 + + + + lib + boot + spring + + + + + + de.juplo.boot + conditional-lib + ${project.version} + + + de.juplo.boot + conditional-boot + ${project.version} + + + de.juplo.boot + conditional-spring + ${project.version} + + + + + diff --git a/spring/pom.xml b/spring/pom.xml new file mode 100644 index 0000000..0d6c03a --- /dev/null +++ b/spring/pom.xml @@ -0,0 +1,52 @@ + + + + 4.0.0 + + + de.juplo.boot + conditional + 1.0.0-SNAPSHOT + + + de.juplo.boot + conditional-spring + 1.0.0-SNAPSHOT + Conditional Annotations - Spring-App + Experiments with Conditional Annotations + + + + de.juplo.boot + conditional-lib + + + org.projectlombok + lombok + + + ch.qos.logback + logback-classic + + + + + + + org.codehouse.mojo + exec-maven-plugin + 3.1.0 + + + run + + de.juplo.boot.conditional.spring.Application + + + + + + + + -- 2.20.1