This is an automated email from the ASF dual-hosted git repository. davsclaus pushed a commit to branch release-3.16.0 in repository https://gitbox.apache.org/repos/asf/camel-spring-boot.git
commit 61a504e799b61131436b05caaf40e111da8ec0f0 Author: Claus Ibsen <[email protected]> AuthorDate: Tue Mar 22 22:13:40 2022 +0100 Fix build of camel-spring-boot - Should be test scope and use camel-version --- components-starter/camel-avro-starter/pom.xml | 3 ++- components-starter/camel-fhir-starter/pom.xml | 3 ++- components-starter/camel-jira-starter/pom.xml | 3 ++- components-starter/camel-kafka-starter/pom.xml | 3 ++- 4 files changed, 8 insertions(+), 4 deletions(-) diff --git a/components-starter/camel-avro-starter/pom.xml b/components-starter/camel-avro-starter/pom.xml index 928341a..ddff9b0 100644 --- a/components-starter/camel-avro-starter/pom.xml +++ b/components-starter/camel-avro-starter/pom.xml @@ -43,13 +43,14 @@ <dependency> <groupId>org.apache.camel</groupId> <artifactId>camel-test-spring-junit5</artifactId> + <version>${camel-version}</version> + <scope>test</scope> <exclusions> <exclusion> <groupId>org.apache.camel</groupId> <artifactId>camel-spring-xml</artifactId> </exclusion> </exclusions> - <scope>test</scope> </dependency> <dependency> <groupId>org.awaitility</groupId> diff --git a/components-starter/camel-fhir-starter/pom.xml b/components-starter/camel-fhir-starter/pom.xml index 1686a1c..2c65099 100644 --- a/components-starter/camel-fhir-starter/pom.xml +++ b/components-starter/camel-fhir-starter/pom.xml @@ -43,13 +43,14 @@ <dependency> <groupId>org.apache.camel</groupId> <artifactId>camel-test-spring-junit5</artifactId> + <version>${camel-version}</version> + <scope>test</scope> <exclusions> <exclusion> <groupId>org.apache.camel</groupId> <artifactId>camel-spring-xml</artifactId> </exclusion> </exclusions> - <scope>test</scope> </dependency> <dependency> <groupId>org.awaitility</groupId> diff --git a/components-starter/camel-jira-starter/pom.xml b/components-starter/camel-jira-starter/pom.xml index 7714147..6226145 100644 --- a/components-starter/camel-jira-starter/pom.xml +++ b/components-starter/camel-jira-starter/pom.xml @@ -51,13 +51,14 @@ <dependency> <groupId>org.apache.camel</groupId> <artifactId>camel-test-spring-junit5</artifactId> + <version>${camel-version}</version> + <scope>test</scope> <exclusions> <exclusion> <groupId>org.apache.camel</groupId> <artifactId>camel-spring-xml</artifactId> </exclusion> </exclusions> - <scope>test</scope> </dependency> <dependency> <groupId>org.awaitility</groupId> diff --git a/components-starter/camel-kafka-starter/pom.xml b/components-starter/camel-kafka-starter/pom.xml index 368c4d6..2649f71 100644 --- a/components-starter/camel-kafka-starter/pom.xml +++ b/components-starter/camel-kafka-starter/pom.xml @@ -63,13 +63,14 @@ <dependency> <groupId>org.apache.camel</groupId> <artifactId>camel-test-spring-junit5</artifactId> + <version>${camel-version}</version> + <scope>test</scope> <exclusions> <exclusion> <groupId>org.apache.camel</groupId> <artifactId>camel-spring-xml</artifactId> </exclusion> </exclusions> - <scope>test</scope> </dependency> <dependency> <groupId>org.springframework.boot</groupId>
