build.gradle.kts 519 B

12345678910111213141516
  1. plugins {
  2. id("otel.java-conventions")
  3. }
  4. dependencies {
  5. api(project(":testing-common"))
  6. // it's important for these to not be api dependencies, because api dependencies pull in their
  7. // transitive dependencies as well, which causes issues for testLatestDep
  8. implementation("io.ratpack:ratpack-core:1.4.0")
  9. implementation("io.ratpack:ratpack-test:1.4.0")
  10. implementation("org.apache.groovy:groovy")
  11. implementation("io.opentelemetry:opentelemetry-api")
  12. implementation("org.spockframework:spock-core")
  13. }