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.22 in repository https://gitbox.apache.org/repos/asf/camel.git
commit 186fd7c277903f2d3a089fa9221731cd1d9a92ac 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 a2d0691f877..c3b5032b74a 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>
