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 be982a15134 CAMEL-18460: Duplicate dependency in camel-spring-boot-bom be982a15134 is described below commit be982a151343955cc91c8a76d78e791be7c75595 Author: Claus Ibsen <claus.ib...@gmail.com> AuthorDate: Sun Sep 4 09:28:05 2022 +0200 CAMEL-18460: Duplicate dependency in camel-spring-boot-bom --- tooling/camel-spring-boot-bom/pom.xml | 5 ----- .../java/org/apache/camel/springboot/maven/BomGeneratorMojo.java | 5 ----- 2 files changed, 10 deletions(-) diff --git a/tooling/camel-spring-boot-bom/pom.xml b/tooling/camel-spring-boot-bom/pom.xml index 392ad3114ba..153cfb25ca6 100644 --- a/tooling/camel-spring-boot-bom/pom.xml +++ b/tooling/camel-spring-boot-bom/pom.xml @@ -533,11 +533,6 @@ <artifactId>camel-dsl-modeline-starter</artifactId> <version>${project.version}</version> </dependency> - <dependency> - <groupId>org.apache.camel.springboot</groupId> - <artifactId>camel-dsl-modeline-starter</artifactId> - <version>${project.version}</version> - </dependency> <dependency> <groupId>org.apache.camel.springboot</groupId> <artifactId>camel-dynamic-router-starter</artifactId> 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 b50aac4546a..1d26daae449 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 @@ -161,11 +161,6 @@ public class BomGeneratorMojo extends AbstractMojo { outDependencies.add(dep); dep = new Dependency(); dep.setGroupId("org.apache.camel.springboot"); - dep.setArtifactId("camel-dsl-modeline-starter"); - dep.setVersion("${project.version}"); - outDependencies.add(dep); - dep = new Dependency(); - dep.setGroupId("org.apache.camel.springboot"); dep.setArtifactId("camel-endpointdsl-starter"); dep.setVersion("${project.version}"); outDependencies.add(dep);