build.gradle.kts 476 B

12345678910111213141516
  1. plugins {
  2. id("otel.javaagent-instrumentation")
  3. }
  4. dependencies {
  5. compileOnly(project(":instrumentation:java-util-logging:shaded-stub-for-instrumenting"))
  6. compileOnly(project(":instrumentation-appender-api-internal"))
  7. testImplementation("org.awaitility:awaitility")
  8. }
  9. tasks.withType<Test>().configureEach {
  10. // TODO run tests both with and without experimental log attributes
  11. jvmArgs("-Dotel.instrumentation.java-util-logging.experimental-log-attributes=true")
  12. }