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 9c5d97f9d926952c9bbff43d454eccb9c155c501 Author: Claus Ibsen <[email protected]> AuthorDate: Tue Mar 22 22:27:16 2022 +0100 Fix build of camel-spring-boot - Should be test scope and use camel-version --- components-starter/camel-telegram-starter/pom.xml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/components-starter/camel-telegram-starter/pom.xml b/components-starter/camel-telegram-starter/pom.xml index 845f7ce..9fcd130 100644 --- a/components-starter/camel-telegram-starter/pom.xml +++ b/components-starter/camel-telegram-starter/pom.xml @@ -52,16 +52,19 @@ <dependency> <groupId>org.apache.camel</groupId> <artifactId>camel-test-junit5</artifactId> + <version>${camel-version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.apache.camel</groupId> <artifactId>camel-health</artifactId> + <version>${camel-version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.apache.camel</groupId> <artifactId>camel-netty-http</artifactId> + <version>${camel-version}</version> <scope>test</scope> </dependency> <!--START OF GENERATED CODE-->
