You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by da...@apache.org on 2022/05/06 04:11:56 UTC

[camel-spring-boot] branch main updated: chore : add missing artifacts to the bom (#553)

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

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


The following commit(s) were added to refs/heads/main by this push:
     new 0cb5f30dc0e chore : add missing artifacts to the bom (#553)
0cb5f30dc0e is described below

commit 0cb5f30dc0eb50367ecd566e61487cef7c1c5e8e
Author: Tom Cunningham <tc...@redhat.com>
AuthorDate: Fri May 6 00:11:52 2022 -0400

    chore : add missing artifacts to the bom (#553)
---
 tooling/camel-spring-boot-bom/pom.xml                  | 15 +++++++++++++++
 tooling/camel-spring-boot-dependencies/pom.xml         |  2 +-
 .../camel/springboot/maven/BomGeneratorMojo.java       | 18 ++++++++++++++++++
 3 files changed, 34 insertions(+), 1 deletion(-)

diff --git a/tooling/camel-spring-boot-bom/pom.xml b/tooling/camel-spring-boot-bom/pom.xml
index 44d75715318..91a361052cd 100644
--- a/tooling/camel-spring-boot-bom/pom.xml
+++ b/tooling/camel-spring-boot-bom/pom.xml
@@ -1403,16 +1403,31 @@
         <artifactId>camel-spring-batch-starter</artifactId>
         <version>${project.version}</version>
       </dependency>
+      <dependency>
+        <groupId>org.apache.camel.springboot</groupId>
+        <artifactId>camel-spring-boot</artifactId>
+        <version>${project.version}</version>
+      </dependency>
       <dependency>
         <groupId>org.apache.camel.springboot</groupId>
         <artifactId>camel-spring-boot-engine-starter</artifactId>
         <version>${project.version}</version>
       </dependency>
+      <dependency>
+        <groupId>org.apache.camel.springboot</groupId>
+        <artifactId>camel-spring-boot-generator-maven-plugin</artifactId>
+        <version>${project.version}</version>
+      </dependency>
       <dependency>
         <groupId>org.apache.camel.springboot</groupId>
         <artifactId>camel-spring-boot-starter</artifactId>
         <version>${project.version}</version>
       </dependency>
+      <dependency>
+        <groupId>org.apache.camel.springboot</groupId>
+        <artifactId>camel-spring-boot-xml</artifactId>
+        <version>${project.version}</version>
+      </dependency>
       <dependency>
         <groupId>org.apache.camel.springboot</groupId>
         <artifactId>camel-spring-boot-xml-starter</artifactId>
diff --git a/tooling/camel-spring-boot-dependencies/pom.xml b/tooling/camel-spring-boot-dependencies/pom.xml
index 9b5814095ac..84d768d2f33 100644
--- a/tooling/camel-spring-boot-dependencies/pom.xml
+++ b/tooling/camel-spring-boot-dependencies/pom.xml
@@ -4165,7 +4165,7 @@
       <dependency>
         <groupId>org.apache.cassandra</groupId>
         <artifactId>cassandra-all</artifactId>
-        <version>3.11.12</version>
+        <version>4.0.3</version>
       </dependency>
       <dependency>
         <groupId>org.apache.cxf.services.sts</groupId>
diff --git a/tooling/camel-spring-boot-generator-maven-plugin/src/main/java/org/apache/camel/springboot/maven/BomGeneratorMojo.java b/tooling/camel-spring-boot-generator-maven-plugin/src/main/java/org/apache/camel/springboot/maven/BomGeneratorMojo.java
index 47376829a7b..9bb28023e3b 100644
--- a/tooling/camel-spring-boot-generator-maven-plugin/src/main/java/org/apache/camel/springboot/maven/BomGeneratorMojo.java
+++ b/tooling/camel-spring-boot-generator-maven-plugin/src/main/java/org/apache/camel/springboot/maven/BomGeneratorMojo.java
@@ -130,6 +130,24 @@ public class BomGeneratorMojo extends AbstractMojo {
         dep.setVersion("${project.version}");
         outDependencies.add(dep);
 
+        // include base jars
+        dep = new Dependency();
+        dep.setGroupId("org.apache.camel.springboot");
+        dep.setArtifactId("camel-spring-boot-xml");
+        dep.setVersion("${project.version}");
+        outDependencies.add(dep);
+        dep = new Dependency();
+        dep.setGroupId("org.apache.camel.springboot");
+        dep.setArtifactId("camel-spring-boot");
+        dep.setVersion("${project.version}");
+        outDependencies.add(dep);
+        // include maven plugin
+        dep = new Dependency();
+        dep.setGroupId("org.apache.camel.springboot");
+        dep.setArtifactId("camel-spring-boot-generator-maven-plugin");
+        dep.setVersion("${project.version}");
+        outDependencies.add(dep);
+
         // include dsl starters
         dep = new Dependency();
         dep.setGroupId("org.apache.camel.springboot");