This is an automated email from the ASF dual-hosted git repository.

davsclaus pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel.git


The following commit(s) were added to refs/heads/main by this push:
     new 33b7377b16b4 chore: exclude transitive junit:junit 4.10 from 
drill-jdbc in camel-drill
33b7377b16b4 is described below

commit 33b7377b16b46cd9bb4a27d81b151d57363f4895
Author: Claus Ibsen <[email protected]>
AuthorDate: Mon Sep 7 11:00:07 2026 +0200

    chore: exclude transitive junit:junit 4.10 from drill-jdbc in camel-drill
    
    drill-jdbc 1.22.0 pulls in junit:junit:4.10 at compile scope, which is
    incompatible with maven-failsafe-plugin 3.6.0 (requires JUnit 4.11+).
    
    Co-Authored-By: Claude Sonnet 4.6 <[email protected]>
    Signed-off-by: Claus Ibsen <[email protected]>
---
 components/camel-drill/pom.xml | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/components/camel-drill/pom.xml b/components/camel-drill/pom.xml
index 5ac0a191c590..348aa945abc7 100644
--- a/components/camel-drill/pom.xml
+++ b/components/camel-drill/pom.xml
@@ -58,6 +58,10 @@
                     <groupId>ch.qos.logback</groupId>
                     <artifactId>*</artifactId>
                 </exclusion>
+                <exclusion>
+                    <groupId>junit</groupId>
+                    <artifactId>junit</artifactId>
+                </exclusion>
             </exclusions>
         </dependency>
         <dependency>

Reply via email to