This is an automated email from the ASF dual-hosted git repository. jamesnetherton pushed a commit to branch camel-main in repository https://gitbox.apache.org/repos/asf/camel-quarkus.git
commit d4cd93d81e07d5dc2f802d2ad676f4dc98572d7c Author: James Netherton <[email protected]> AuthorDate: Tue Feb 24 11:53:26 2026 +0000 Exclude commons-logging from spring-core --- extensions-support/spring/shade/core/pom.xml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/extensions-support/spring/shade/core/pom.xml b/extensions-support/spring/shade/core/pom.xml index 49ecf433c6..c5b9a75f76 100644 --- a/extensions-support/spring/shade/core/pom.xml +++ b/extensions-support/spring/shade/core/pom.xml @@ -33,6 +33,12 @@ <groupId>org.springframework</groupId> <artifactId>spring-core</artifactId> <scope>runtime</scope> + <exclusions> + <exclusion> + <groupId>commons-logging</groupId> + <artifactId>commons-logging</artifactId> + </exclusion> + </exclusions> </dependency> </dependencies>
