build.gradle.kts 867 B

1234567891011121314151617181920212223
  1. plugins {
  2. id("otel.javaagent-instrumentation")
  3. }
  4. dependencies {
  5. compileOnly(project(":javaagent-bootstrap"))
  6. compileOnly(project(":javaagent-tooling"))
  7. testImplementation(project(":javaagent-bootstrap"))
  8. // This is the earliest version that has org.apache.catalina.loader.ParallelWebappClassLoader
  9. // which is used in the test
  10. testLibrary("org.apache.tomcat:tomcat-catalina:8.0.14")
  11. testImplementation("org.jboss.modules:jboss-modules:1.3.10.Final")
  12. // TODO: we should separate core and Eclipse tests at some point,
  13. // but right now core-specific tests are quite dumb and are run with
  14. // core version provided by Eclipse implementation.
  15. // testImplementation("org.osgi:org.osgi.core:4.0.0")
  16. testImplementation("org.eclipse.platform:org.eclipse.osgi:3.13.200")
  17. testImplementation("org.apache.felix:org.apache.felix.framework:6.0.2")
  18. }