This is an automated email from the ASF dual-hosted git repository. nfilotto pushed a commit to branch CAMEL-19871/set-scope-to-test-dependencies-3.20 in repository https://gitbox.apache.org/repos/asf/camel.git
commit 927fb1d56e086931e79da20ddbe916a3435c6a93 Author: Nicolas Filotto <[email protected]> AuthorDate: Fri Sep 15 10:46:54 2023 +0200 CAMEL-19871: camel-jooq - Set the proper scope to all test dependencies --- components/camel-jooq/pom.xml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/components/camel-jooq/pom.xml b/components/camel-jooq/pom.xml index 213de8cedee..78661813c7f 100644 --- a/components/camel-jooq/pom.xml +++ b/components/camel-jooq/pom.xml @@ -89,11 +89,13 @@ <groupId>org.springframework</groupId> <artifactId>spring-context</artifactId> <version>${spring-version}</version> + <scope>test</scope> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-jdbc</artifactId> <version>${spring-version}</version> + <scope>test</scope> </dependency> <dependency> <groupId>org.springframework</groupId>
