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-4.0 in repository https://gitbox.apache.org/repos/asf/camel.git
commit ed0bc951eba7f80317ccdc6dd27eb07a6a300f5e 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 | 3 +++ 1 file changed, 3 insertions(+) diff --git a/components/camel-jooq/pom.xml b/components/camel-jooq/pom.xml index 4d69b7c7ad8..e1d9625dd11 100644 --- a/components/camel-jooq/pom.xml +++ b/components/camel-jooq/pom.xml @@ -84,11 +84,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> @@ -100,6 +102,7 @@ <groupId>org.awaitility</groupId> <artifactId>awaitility</artifactId> <version>${awaitility-version}</version> + <scope>test</scope> </dependency> <dependency> <groupId>org.hsqldb</groupId>
