19 lines
409 B
Groovy
19 lines
409 B
Groovy
apply from: "$rootDir/gradle/instrumentation.gradle"
|
|
|
|
muzzle {
|
|
pass {
|
|
group = "org.apache.logging.log4j"
|
|
module = "log4j-core"
|
|
versions = "[2.7,2.13.2)"
|
|
assertInverse = true
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
library "org.apache.logging.log4j:log4j-core:2.7"
|
|
|
|
testImplementation project(':instrumentation:log4j:log4j-2-testing')
|
|
|
|
latestDepTestLibrary "org.apache.logging.log4j:log4j-core:2.13.1"
|
|
}
|