From: Kai Moritz Date: Mon, 18 Sep 2023 18:50:13 +0000 (+0200) Subject: Initial of an empty project with sub-projects X-Git-Url: https://juplo.de/gitweb/?a=commitdiff_plain;h=30b4caa47225ebb4e3ce7454659fd3bf71a9a40f;p=demos%2Fspring%2Fconditional Initial of an empty project with sub-projects --- 30b4caa47225ebb4e3ce7454659fd3bf71a9a40f 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 + + + + + + + +