• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1plugins {
2    id "application"
3
4    id "ru.vyarus.animalsniffer"
5}
6
7description = "gRPC: Google Cloud Platform Observability Interop"
8
9dependencies {
10    implementation project(':grpc-interop-testing'),
11            project(':grpc-gcp-observability')
12
13    signature libraries.signature.java
14}
15
16application {
17    mainClass = 'io.grpc.gcp.observability.interop.TestServiceInterop'
18}
19
20tasks.named('startScripts').configure {
21    applicationName = 'gcp-observability-interop'
22}
23