build.gradle.kts 384 B

123456789101112
  1. plugins {
  2. id("otel.javaagent-instrumentation")
  3. }
  4. // liberty and liberty-dispatcher are loaded into different class loaders
  5. // liberty module has access to servlet api while liberty-dispatcher does not
  6. dependencies {
  7. // liberty jars are not available as a maven dependency so we compile against
  8. // stub classes
  9. compileOnly(project(":instrumentation:liberty:compile-stub"))
  10. }