build.gradle.kts 953 B

1234567891011121314151617181920212223242526272829303132
  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.0.0, 1.2-M1)")
  9. assertInverse.set(true)
  10. }
  11. }
  12. repositories {
  13. mavenCentral()
  14. maven("https://maven.restlet.talend.com/")
  15. mavenLocal()
  16. }
  17. dependencies {
  18. api(project(":instrumentation:restlet:restlet-1.0:library"))
  19. bootstrap(project(":instrumentation:servlet:servlet-common:bootstrap"))
  20. library("org.restlet:org.restlet:1.1.5")
  21. library("com.noelios.restlet:com.noelios.restlet:1.1.5")
  22. implementation(project(":instrumentation:restlet:restlet-1.0:library"))
  23. testImplementation(project(":instrumentation:restlet:restlet-1.0: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. }