This is an automated email from the ASF dual-hosted git repository.

davsclaus pushed a commit to branch camel-3.0.x
in repository https://gitbox.apache.org/repos/asf/camel.git

commit a28ed8d22ca7661acbd30d44b3dee6e830c3cd10
Author: Claus Ibsen <claus.ib...@gmail.com>
AuthorDate: Sun Nov 24 17:50:01 2019 +0100

    spring boot groupId fix
---
 platforms/spring-boot/spring-boot-dm/README.adoc                  | 2 +-
 .../java/org/apache/camel/itest/springboot/util/BOMResolver.java  | 8 ++++----
 2 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/platforms/spring-boot/spring-boot-dm/README.adoc 
b/platforms/spring-boot/spring-boot-dm/README.adoc
index 3af7326..4ebb7c7 100644
--- a/platforms/spring-boot/spring-boot-dm/README.adoc
+++ b/platforms/spring-boot/spring-boot-dm/README.adoc
@@ -24,7 +24,7 @@ The POM of a end user application should include both BOMs, 
as in the following
         <scope>import</scope>
       </dependency>
       <dependency>
-        <groupId>org.apache.camel</groupId>
+        <groupId>org.apache.camel.springboot</groupId>
         <artifactId>camel-spring-boot-dependencies</artifactId>
         <version>${project.version}</version>
         <type>pom</type>
diff --git 
a/tests/camel-itest-spring-boot/src/test/java/org/apache/camel/itest/springboot/util/BOMResolver.java
 
b/tests/camel-itest-spring-boot/src/test/java/org/apache/camel/itest/springboot/util/BOMResolver.java
index 0d07191..422acc9 100644
--- 
a/tests/camel-itest-spring-boot/src/test/java/org/apache/camel/itest/springboot/util/BOMResolver.java
+++ 
b/tests/camel-itest-spring-boot/src/test/java/org/apache/camel/itest/springboot/util/BOMResolver.java
@@ -117,13 +117,13 @@ public final class BOMResolver {
         Artifact camelParent = new 
DefaultArtifact("org.apache.camel:camel-parent:pom:"
                 + camelVersion).setFile(camelRoot("parent/pom.xml"));
         neededArtifacts.add(camelParent);
-        neededArtifacts.add(new 
DefaultArtifact("org.apache.camel:spring-boot:pom:"
+        neededArtifacts.add(new 
DefaultArtifact("org.apache.camel.springboot:spring-boot:pom:"
             + 
camelVersion).setFile(camelRoot("platforms/spring-boot/pom.xml")));
-        neededArtifacts.add(new 
DefaultArtifact("org.apache.camel:camel-spring-boot-dm:pom:"
+        neededArtifacts.add(new 
DefaultArtifact("org.apache.camel.springboot:camel-spring-boot-dm:pom:"
             + 
camelVersion).setFile(camelRoot("platforms/spring-boot/spring-boot-dm/pom.xml")));
-        neededArtifacts.add(new 
DefaultArtifact("org.apache.camel:camel-spring-boot-dependencies:pom:"
+        neededArtifacts.add(new 
DefaultArtifact("org.apache.camel.springboot:camel-spring-boot-dependencies:pom:"
             + 
camelVersion).setFile(camelRoot("platforms/spring-boot/spring-boot-dm/camel-spring-boot-dependencies/pom.xml")));
-        Artifact camelStarterParent = new 
DefaultArtifact("org.apache.camel:camel-starter-parent:pom:"
+        Artifact camelStarterParent = new 
DefaultArtifact("org.apache.camel.springboot:camel-starter-parent:pom:"
             + 
camelVersion).setFile(camelRoot("platforms/spring-boot/spring-boot-dm/camel-starter-parent/pom.xml"));
         neededArtifacts.add(camelStarterParent);
 

Reply via email to