mirror of https://github.com/grpc/grpc-java.git
27 lines
548 B
Groovy
27 lines
548 B
Groovy
plugins {
|
|
id "application"
|
|
|
|
id "ru.vyarus.animalsniffer"
|
|
}
|
|
|
|
description = "gRPC: Google Cloud Platform Observability Interop"
|
|
|
|
dependencies {
|
|
implementation project(':grpc-interop-testing'),
|
|
project(':grpc-gcp-observability')
|
|
|
|
signature (libraries.signature.java) {
|
|
artifact {
|
|
extension = "signature"
|
|
}
|
|
}
|
|
}
|
|
|
|
application {
|
|
mainClass = 'io.grpc.gcp.observability.interop.TestServiceInterop'
|
|
}
|
|
|
|
tasks.named('startScripts').configure {
|
|
applicationName = 'gcp-observability-interop'
|
|
}
|