mirror of https://github.com/grpc/grpc-java.git
19 lines
355 B
Groovy
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()
|