build.gradle.kts 888 B

123456789101112131415161718192021222324
  1. plugins {
  2. id("otel.library-instrumentation")
  3. }
  4. dependencies {
  5. compileOnly("com.google.auto.value:auto-value-annotations")
  6. annotationProcessor("com.google.auto.value:auto-value")
  7. library("org.springframework.integration:spring-integration-core:4.1.0.RELEASE")
  8. testImplementation(project(":instrumentation:spring:spring-integration-4.1:testing"))
  9. testLibrary("org.springframework.boot:spring-boot-starter-test:1.5.22.RELEASE")
  10. testLibrary("org.springframework.boot:spring-boot-starter:1.5.22.RELEASE")
  11. testLibrary("org.springframework.cloud:spring-cloud-stream:2.2.1.RELEASE")
  12. testLibrary("org.springframework.cloud:spring-cloud-stream-binder-rabbit:2.2.1.RELEASE")
  13. }
  14. tasks {
  15. test {
  16. systemProperty("testLatestDeps", findProperty("testLatestDeps") as Boolean)
  17. usesService(gradle.sharedServices.registrations["testcontainersBuildService"].getService())
  18. }
  19. }