This is an automated email from the ASF dual-hosted git repository. robbie pushed a commit to branch new-logging in repository https://gitbox.apache.org/repos/asf/activemq-artemis.git
commit fc8988132d0df38e24d8f451df7e9ad5df0bd218 Author: Robbie Gemmell <[email protected]> AuthorDate: Tue Aug 16 11:37:30 2022 +0100 update deps to match actual SLF4J base usage and simplify --- tests/activemq5-unit-tests/pom.xml | 15 ++++----------- 1 file changed, 4 insertions(+), 11 deletions(-) diff --git a/tests/activemq5-unit-tests/pom.xml b/tests/activemq5-unit-tests/pom.xml index 1d2fc06a4d..d891937ba5 100644 --- a/tests/activemq5-unit-tests/pom.xml +++ b/tests/activemq5-unit-tests/pom.xml @@ -38,23 +38,16 @@ <artifactId>mockito-core</artifactId> <scope>compile</scope> </dependency> + <dependency> - <groupId>org.apache.logging.log4j</groupId> - <artifactId>log4j-slf4j-impl</artifactId> - <version>${log4j.version}</version> - </dependency> - <dependency> - <groupId>org.apache.logging.log4j</groupId> - <artifactId>log4j-api</artifactId> - <version>${log4j.version}</version> + <groupId>org.slf4j</groupId> + <artifactId>slf4j-api</artifactId> </dependency> <dependency> <groupId>org.apache.logging.log4j</groupId> - <artifactId>log4j-core</artifactId> - <version>${log4j.version}</version> + <artifactId>log4j-slf4j-impl</artifactId> </dependency> - <dependency> <groupId>org.apache.activemq</groupId> <artifactId>activemq-client</artifactId>
