build.gradle.kts 551 B

1234567891011121314151617181920212223
  1. plugins {
  2. id("otel.library-instrumentation")
  3. id("otel.animalsniffer-conventions")
  4. }
  5. val grpcVersion = "1.6.0"
  6. dependencies {
  7. library("io.grpc:grpc-core:$grpcVersion")
  8. testLibrary("io.grpc:grpc-netty:$grpcVersion")
  9. testLibrary("io.grpc:grpc-protobuf:$grpcVersion")
  10. testLibrary("io.grpc:grpc-services:$grpcVersion")
  11. testLibrary("io.grpc:grpc-stub:$grpcVersion")
  12. testImplementation(project(":instrumentation:grpc-1.6:testing"))
  13. }
  14. tasks {
  15. test {
  16. systemProperty("testLatestDeps", findProperty("testLatestDeps") as Boolean)
  17. }
  18. }