mirror of https://github.com/grpc/grpc-java.git
21 lines
508 B
Groovy
21 lines
508 B
Groovy
description = 'gRPC: Core'
|
|
|
|
dependencies {
|
|
compile project(':grpc-context'),
|
|
libraries.guava,
|
|
libraries.errorprone,
|
|
libraries.jsr305,
|
|
libraries.instrumentation_api,
|
|
libraries.opencensus_api
|
|
|
|
testCompile project(':grpc-testing')
|
|
|
|
signature "org.codehaus.mojo.signature:java16:1.1@signature"
|
|
}
|
|
|
|
javadoc {
|
|
// We want io.grpc.Internal, but not io.grpc.Internal*
|
|
exclude 'io/grpc/Internal?*.java'
|
|
exclude 'io/grpc/internal/**'
|
|
}
|