This is an automated email from the ASF dual-hosted git repository. rzo1 pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/tomee-release-tools.git
commit ef078f5645ed87ca5321dc81114683bcd6d84b15 Author: Richard Zowalla <[email protected]> AuthorDate: Wed Apr 13 12:28:58 2022 +0200 Adjusts logging to avoid runtime conflicts --- pom.xml | 22 +++++++++++++++++++++- 1 file changed, 21 insertions(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 33a926e..40a7bcb 100644 --- a/pom.xml +++ b/pom.xml @@ -37,7 +37,7 @@ <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> - <slf4j-version>1.7.7</slf4j-version> + <slf4j-version>1.7.36</slf4j-version> </properties> <build> @@ -125,6 +125,12 @@ <version>${slf4j-version}</version> <scope>compile</scope> </dependency> + <dependency> + <groupId>org.slf4j</groupId> + <artifactId>jul-to-slf4j</artifactId> + <version>${slf4j-version}</version> + <scope>compile</scope> + </dependency> <dependency> <groupId>org.codehaus.swizzle</groupId> @@ -298,6 +304,20 @@ <groupId>org.tomitribe.jamira</groupId> <artifactId>jamira-core</artifactId> <version>0.4</version> + <exclusions> + <exclusion> + <groupId>org.slf4j</groupId> + <artifactId>slf4j-log4j12</artifactId> + </exclusion> + <exclusion> + <groupId>org.slf4j</groupId> + <artifactId>slf4j-api</artifactId> + </exclusion> + <exclusion> + <groupId>org.slf4j</groupId> + <artifactId>jcl-over-slf4j</artifactId> + </exclusion> + </exclusions> </dependency> <dependency> <groupId>junit</groupId>
