This is an automated email from the ASF dual-hosted git repository. davsclaus pushed a commit to branch polish in repository https://gitbox.apache.org/repos/asf/camel.git
commit a3a687f2db3f42a75e1575be63018bad251b001f Author: Claus Ibsen <[email protected]> AuthorDate: Tue Jul 25 10:46:56 2023 +0200 camel-quartz - Use same version of commons-pool2 --- components/camel-quartz/pom.xml | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/components/camel-quartz/pom.xml b/components/camel-quartz/pom.xml index d3599f80275..4524e98d4e3 100644 --- a/components/camel-quartz/pom.xml +++ b/components/camel-quartz/pom.xml @@ -85,11 +85,23 @@ <artifactId>camel-management</artifactId> <scope>test</scope> </dependency> + <dependency> + <groupId>org.apache.commons</groupId> + <artifactId>commons-pool2</artifactId> + <version>${commons-pool2-version}</version> + <scope>test</scope> + </dependency> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-dbcp2</artifactId> <version>${commons-dbcp2-version}</version> <scope>test</scope> + <exclusions> + <exclusion> + <groupId>commons-logging</groupId> + <artifactId>commons-logging</artifactId> + </exclusion> + </exclusions> </dependency> <!-- for persistent test -->
