This is an automated email from the ASF dual-hosted git repository. nfilotto pushed a commit to branch essobedo/441/cleanup-slf4j-providers in repository https://gitbox.apache.org/repos/asf/camel-karaf.git
commit 44f09486a9bec00a88bad3260e2fc4b5ddcfeac5 Author: Nicolas Filotto <[email protected]> AuthorDate: Fri Oct 11 20:02:15 2024 +0200 Ref #441: Exclude pax-logging-logback --- tests/examples/pom.xml | 4 ++++ tests/features/pom.xml | 4 ++++ 2 files changed, 8 insertions(+) diff --git a/tests/examples/pom.xml b/tests/examples/pom.xml index f990dd10a..9721116d3 100644 --- a/tests/examples/pom.xml +++ b/tests/examples/pom.xml @@ -120,6 +120,10 @@ <groupId>org.apache.karaf</groupId> <artifactId>org.apache.karaf.client</artifactId> </exclusion> + <exclusion> + <groupId>org.ops4j.pax.logging</groupId> + <artifactId>pax-logging-logback</artifactId> + </exclusion> </exclusions> </dependency> <!-- Required to use shell commands in the tests --> diff --git a/tests/features/pom.xml b/tests/features/pom.xml index 78bed9dac..307832aee 100644 --- a/tests/features/pom.xml +++ b/tests/features/pom.xml @@ -186,6 +186,10 @@ <groupId>org.apache.karaf</groupId> <artifactId>org.apache.karaf.client</artifactId> </exclusion> + <exclusion> + <groupId>org.ops4j.pax.logging</groupId> + <artifactId>pax-logging-logback</artifactId> + </exclusion> </exclusions> </dependency> <!-- Required to use shell commands in the tests -->
