12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- plugins {
- id("otel.javaagent-instrumentation")
- id("org.unbroken-dome.test-sets")
- }
- muzzle {
- pass {
- group.set("org.apache.logging.log4j")
- module.set("log4j-core")
- versions.set("[2.16.0,)")
- assertInverse.set(true)
- }
- }
- testSets {
- // Very different codepaths when threadlocals are enabled or not so we check both.
- // Regression test for https://github.com/open-telemetry/opentelemetry-java-instrumentation/issues/2403
- create("testDisableThreadLocals") {
- dirName = "test"
- }
- }
- dependencies {
- library("org.apache.logging.log4j:log4j-core:2.16.0")
- implementation(project(":instrumentation:log4j:log4j-context-data:log4j-context-data-2.16:library-autoconfigure"))
- testInstrumentation(project(":instrumentation:log4j:log4j-context-data:log4j-context-data-2.7:javaagent"))
- testImplementation(project(":instrumentation:log4j:log4j-context-data:log4j-context-data-2-common:testing"))
- }
- tasks {
- val testDisableThreadLocals by existing(Test::class) {
- jvmArgs("-Dlog4j2.is.webapp=false")
- jvmArgs("-Dlog4j2.enable.threadlocals=false")
- }
- // Threadlocals are always false if is.webapp is true, so we make sure to override it because as of
- // now testing-common includes jetty / servlet.
- test {
- jvmArgs("-Dlog4j2.is.webapp=false")
- jvmArgs("-Dlog4j2.enable.threadlocals=true")
- }
- named("check") {
- dependsOn(testDisableThreadLocals)
- }
- }
|