21 lines
498 B
Groovy
21 lines
498 B
Groovy
apply plugin: "otel.javaagent-instrumentation"
|
|
|
|
muzzle {
|
|
pass {
|
|
group = "ch.qos.logback"
|
|
module = "logback-classic"
|
|
versions = "[1.0.0,1.2.3]"
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation project(':instrumentation:logback-1.0:library')
|
|
|
|
library "ch.qos.logback:logback-classic:1.0.0"
|
|
|
|
testImplementation project(':instrumentation:logback-1.0:testing')
|
|
|
|
// 1.3+ contains breaking changes, check back after it stabilizes.
|
|
latestDepTestLibrary "ch.qos.logback:logback-classic:1.2.+"
|
|
}
|