grpc-java/testing-proto/build.gradle

19 lines
355 B
Groovy

plugins {
id "java"
id "maven-publish"
id "com.google.protobuf"
}
description = "gRPC: Testing Protos"
dependencies {
compile project(':grpc-protobuf'),
project(':grpc-stub')
compileOnly libraries.javax_annotation
testCompile libraries.truth
testRuntime libraries.javax_annotation
}
configureProtoCompilation()