50 lines
1.1 KiB
Plaintext
50 lines
1.1 KiB
Plaintext
plugins {
|
|
id("otel.javaagent-instrumentation")
|
|
}
|
|
|
|
muzzle {
|
|
pass {
|
|
group.set("org.slf4j")
|
|
module.set("slf4j-api")
|
|
versions.set("[1.4.0,)")
|
|
assertInverse.set(true)
|
|
}
|
|
pass {
|
|
group.set("org.springframework.boot")
|
|
module.set("spring-boot")
|
|
// pre-1.2.0 versions don't have the Slf4JLoggingSystem
|
|
versions.set("[1.2.0,)")
|
|
extraDependency("org.springframework.boot:spring-boot-starter-logging")
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
bootstrap(project(":instrumentation:internal:internal-application-logger:bootstrap"))
|
|
|
|
compileOnly(project(":javaagent-bootstrap"))
|
|
|
|
compileOnly("org.slf4j:slf4j-api") {
|
|
version {
|
|
// 1.4.0 introduced the TRACE logging level
|
|
strictly("1.4.0")
|
|
}
|
|
}
|
|
|
|
if (findProperty("testLatestDeps") as Boolean) {
|
|
testImplementation("ch.qos.logback:logback-classic:+")
|
|
} else {
|
|
testImplementation("ch.qos.logback:logback-classic") {
|
|
version {
|
|
strictly("1.2.11")
|
|
}
|
|
}
|
|
testImplementation("org.slf4j:slf4j-api") {
|
|
version {
|
|
strictly("1.7.36")
|
|
}
|
|
}
|
|
}
|
|
|
|
testLibrary("org.springframework.boot:spring-boot-starter:2.5.3")
|
|
}
|