build.gradle.kts 954 B

123456789101112131415161718192021222324252627282930313233
  1. plugins {
  2. id("otel.javaagent-instrumentation")
  3. }
  4. muzzle {
  5. pass {
  6. group.set("org.restlet")
  7. module.set("org.restlet")
  8. versions.set("[1.1.0, 1.2-M1)")
  9. extraDependency("com.noelios.restlet:com.noelios.restlet")
  10. assertInverse.set(true)
  11. }
  12. }
  13. repositories {
  14. mavenCentral()
  15. maven("https://maven.restlet.talend.com/")
  16. mavenLocal()
  17. }
  18. dependencies {
  19. bootstrap(project(":instrumentation:servlet:servlet-common:bootstrap"))
  20. implementation(project(":instrumentation:restlet:restlet-1.1:library"))
  21. library("org.restlet:org.restlet:1.1.5")
  22. library("com.noelios.restlet:com.noelios.restlet:1.1.5")
  23. testImplementation(project(":instrumentation:restlet:restlet-1.1:testing"))
  24. testInstrumentation(project(":instrumentation:jetty:jetty-8.0:javaagent"))
  25. testInstrumentation(project(":instrumentation:servlet:servlet-3.0:javaagent"))
  26. testInstrumentation(project(":instrumentation:servlet:servlet-javax-common:javaagent"))
  27. }