From 78c3a210a0274e911e0ead16f866a7fe973ca1b3 Mon Sep 17 00:00:00 2001 From: mikr Date: Mon, 27 Jan 2020 00:19:57 +0100 Subject: [PATCH] BAEL-20858 Move Spring Boot Properties module to Spring Boot modules --- pom.xml | 2 -- spring-boot-modules/pom.xml | 1 + .../spring-boot-camel}/README.md | 0 .../spring-boot-camel}/pom.xml | 1 + .../src/main/java/com/baeldung/camel/Application.java | 0 .../src/main/java/com/baeldung/camel/ExampleServices.java | 0 .../src/main/java/com/baeldung/camel/MyBean.java | 0 .../src/main/resources/application.properties | 0 .../spring-boot-camel}/src/main/resources/application.yml | 0 .../spring-boot-camel}/src/main/resources/logback.xml | 0 .../src/test/java/org/baeldung/SpringContextTest.java | 0 11 files changed, 2 insertions(+), 2 deletions(-) rename {spring-boot-camel => spring-boot-modules/spring-boot-camel}/README.md (100%) rename {spring-boot-camel => spring-boot-modules/spring-boot-camel}/pom.xml (97%) rename {spring-boot-camel => spring-boot-modules/spring-boot-camel}/src/main/java/com/baeldung/camel/Application.java (100%) rename {spring-boot-camel => spring-boot-modules/spring-boot-camel}/src/main/java/com/baeldung/camel/ExampleServices.java (100%) rename {spring-boot-camel => spring-boot-modules/spring-boot-camel}/src/main/java/com/baeldung/camel/MyBean.java (100%) rename {spring-boot-camel => spring-boot-modules/spring-boot-camel}/src/main/resources/application.properties (100%) rename {spring-boot-camel => spring-boot-modules/spring-boot-camel}/src/main/resources/application.yml (100%) rename {spring-boot-camel => spring-boot-modules/spring-boot-camel}/src/main/resources/logback.xml (100%) rename {spring-boot-camel => spring-boot-modules/spring-boot-camel}/src/test/java/org/baeldung/SpringContextTest.java (100%) diff --git a/pom.xml b/pom.xml index 1a111546fa..88b9e29284 100644 --- a/pom.xml +++ b/pom.xml @@ -645,7 +645,6 @@ spring-boot-artifacts spring-boot-autoconfiguration spring-boot-bootstrap - spring-boot-camel spring-boot-client spring-boot-config-jpa-error @@ -1183,7 +1182,6 @@ spring-boot-artifacts spring-boot-autoconfiguration spring-boot-bootstrap - spring-boot-camel spring-boot-client spring-boot-config-jpa-error diff --git a/spring-boot-modules/pom.xml b/spring-boot-modules/pom.xml index 0af6fe449f..86b071e5cc 100644 --- a/spring-boot-modules/pom.xml +++ b/spring-boot-modules/pom.xml @@ -14,6 +14,7 @@ + spring-boot-camel spring-boot-mvc-birt spring-boot-vue diff --git a/spring-boot-camel/README.md b/spring-boot-modules/spring-boot-camel/README.md similarity index 100% rename from spring-boot-camel/README.md rename to spring-boot-modules/spring-boot-camel/README.md diff --git a/spring-boot-camel/pom.xml b/spring-boot-modules/spring-boot-camel/pom.xml similarity index 97% rename from spring-boot-camel/pom.xml rename to spring-boot-modules/spring-boot-camel/pom.xml index 8bab0ed5c8..8365a3d831 100644 --- a/spring-boot-camel/pom.xml +++ b/spring-boot-modules/spring-boot-camel/pom.xml @@ -11,6 +11,7 @@ com.baeldung parent-modules 1.0.0-SNAPSHOT + ../../parent-modules diff --git a/spring-boot-camel/src/main/java/com/baeldung/camel/Application.java b/spring-boot-modules/spring-boot-camel/src/main/java/com/baeldung/camel/Application.java similarity index 100% rename from spring-boot-camel/src/main/java/com/baeldung/camel/Application.java rename to spring-boot-modules/spring-boot-camel/src/main/java/com/baeldung/camel/Application.java diff --git a/spring-boot-camel/src/main/java/com/baeldung/camel/ExampleServices.java b/spring-boot-modules/spring-boot-camel/src/main/java/com/baeldung/camel/ExampleServices.java similarity index 100% rename from spring-boot-camel/src/main/java/com/baeldung/camel/ExampleServices.java rename to spring-boot-modules/spring-boot-camel/src/main/java/com/baeldung/camel/ExampleServices.java diff --git a/spring-boot-camel/src/main/java/com/baeldung/camel/MyBean.java b/spring-boot-modules/spring-boot-camel/src/main/java/com/baeldung/camel/MyBean.java similarity index 100% rename from spring-boot-camel/src/main/java/com/baeldung/camel/MyBean.java rename to spring-boot-modules/spring-boot-camel/src/main/java/com/baeldung/camel/MyBean.java diff --git a/spring-boot-camel/src/main/resources/application.properties b/spring-boot-modules/spring-boot-camel/src/main/resources/application.properties similarity index 100% rename from spring-boot-camel/src/main/resources/application.properties rename to spring-boot-modules/spring-boot-camel/src/main/resources/application.properties diff --git a/spring-boot-camel/src/main/resources/application.yml b/spring-boot-modules/spring-boot-camel/src/main/resources/application.yml similarity index 100% rename from spring-boot-camel/src/main/resources/application.yml rename to spring-boot-modules/spring-boot-camel/src/main/resources/application.yml diff --git a/spring-boot-camel/src/main/resources/logback.xml b/spring-boot-modules/spring-boot-camel/src/main/resources/logback.xml similarity index 100% rename from spring-boot-camel/src/main/resources/logback.xml rename to spring-boot-modules/spring-boot-camel/src/main/resources/logback.xml diff --git a/spring-boot-camel/src/test/java/org/baeldung/SpringContextTest.java b/spring-boot-modules/spring-boot-camel/src/test/java/org/baeldung/SpringContextTest.java similarity index 100% rename from spring-boot-camel/src/test/java/org/baeldung/SpringContextTest.java rename to spring-boot-modules/spring-boot-camel/src/test/java/org/baeldung/SpringContextTest.java