mirror of https://github.com/grpc/grpc-java.git
28 lines
742 B
Groovy
28 lines
742 B
Groovy
plugins {
|
|
id "java-library"
|
|
id "maven-publish"
|
|
}
|
|
|
|
description = 'gRPC: Census'
|
|
|
|
evaluationDependsOn(project(':grpc-api').path)
|
|
|
|
dependencies {
|
|
api project(':grpc-api')
|
|
implementation libraries.guava,
|
|
libraries.opencensus_api,
|
|
libraries.opencensus_contrib_grpc_metrics
|
|
|
|
testImplementation project(':grpc-api').sourceSets.test.output,
|
|
project(':grpc-context').sourceSets.test.output,
|
|
project(':grpc-core').sourceSets.test.output,
|
|
project(':grpc-testing'),
|
|
libraries.opencensus_impl
|
|
}
|
|
|
|
javadoc {
|
|
failOnError false // no public or protected classes found to document
|
|
exclude 'io/grpc/census/internal/**'
|
|
exclude 'io/grpc/census/Internal*'
|
|
}
|