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