This is an automated email from the ASF dual-hosted git repository. fmariani pushed a commit to branch camel-spring-boot-4.0.0-branch in repository https://gitbox.apache.org/repos/asf/camel-spring-boot.git
commit ea044ddb1b1ccc0ed3ebc994de65fd351e118b9d Author: Croway <[email protected]> AuthorDate: Fri Aug 11 11:13:26 2023 +0200 camel-test-spring was removed in camel 4 --- 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 4efdeba66cb..d6b06f35cdc 100644 --- a/tooling/camel-spring-boot-bom/pom.xml +++ b/tooling/camel-spring-boot-bom/pom.xml @@ -1738,11 +1738,6 @@ <artifactId>camel-management</artifactId> <version>4.0.0</version> </dependency> - <dependency> - <groupId>org.apache.camel</groupId> - <artifactId>camel-test-spring</artifactId> - <version>4.0.0</version> - </dependency> <dependency> <groupId>org.apache.camel</groupId> <artifactId>camel-test-spring-junit5</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 e576e713f42..525a8c545d0 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 @@ -249,11 +249,6 @@ public class BomGeneratorMojo extends AbstractMojo { outDependencies.add(dep); dep = new Dependency(); dep.setGroupId("org.apache.camel"); - dep.setArtifactId("camel-test-spring"); - dep.setVersion(camelCommunityVersion); - outDependencies.add(dep); - dep = new Dependency(); - dep.setGroupId("org.apache.camel"); dep.setArtifactId("camel-test-spring-junit5"); dep.setVersion(camelCommunityVersion); outDependencies.add(dep);
