This is an automated email from the ASF dual-hosted git repository. acosentino pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/camel.git
commit 2dbb83ff1ae806693a2f9628f1af0c51cf6815c3 Author: Claus Ibsen <[email protected]> AuthorDate: Mon Jan 16 16:38:02 2023 +0100 CAMEL-18932: Upgrade to slf4j v2 and adjust log4j2 --- components/camel-any23/pom.xml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/components/camel-any23/pom.xml b/components/camel-any23/pom.xml index 09320dcb409..ceee49c2912 100644 --- a/components/camel-any23/pom.xml +++ b/components/camel-any23/pom.xml @@ -41,6 +41,11 @@ <artifactId>camel-support</artifactId> </dependency> + <dependency> + <groupId>org.apache.logging.log4j</groupId> + <artifactId>log4j-slf4j-impl</artifactId> + <version>${log4j2-version}</version> + </dependency> <dependency> <groupId>org.apache.any23</groupId> <artifactId>apache-any23-core</artifactId> @@ -60,6 +65,11 @@ <artifactId>camel-test-junit5</artifactId> <scope>test</scope> </dependency> + <dependency> + <groupId>org.apache.logging.log4j</groupId> + <artifactId>log4j-core</artifactId> + <scope>test</scope> + </dependency> <dependency> <groupId>org.apache.logging.log4j</groupId> <artifactId>log4j-slf4j2-impl</artifactId>
