build.gradle.kts 369 B

12345678910111213
  1. plugins {
  2. id("otel.library-instrumentation")
  3. }
  4. dependencies {
  5. library("org.apache.logging.log4j:log4j-core:2.13.2")
  6. // Library instrumentation cannot be applied to 2.13.2 due to a bug in Log4J. The agent works
  7. // around it.
  8. testLibrary("org.apache.logging.log4j:log4j-core:2.13.3")
  9. testImplementation(project(":instrumentation:log4j:log4j-2-testing"))
  10. }