We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 84c958a + 51626cf commit b85c49cCopy full SHA for b85c49c
metafacture-runner/build.gradle
@@ -73,7 +73,10 @@ dependencies {
73
// class loader which was used to load the classes of the slf4j-api. Until
74
// a solution is found for this problem, the binding need to be placed on the
75
// class path:
76
- runtimeOnly "org.slf4j:slf4j-log4j12:${versions.slf4j}"
+ runtimeOnly("org.slf4j:slf4j-log4j12:${versions.slf4j}") {
77
+ // Prevent multiple SLF4J bindings warning:
78
+ exclude group: 'org.slf4j', module: 'slf4j-reload4j'
79
+ }
80
81
// The following dependencies are placed in the "provided" scope to prevent
82
// them from being included in the class path but still have them available
0 commit comments