blob: af5445a218c3bf0f8e183e8d51e0995d9d04a94c [file] [log] [blame]
plugins {
id "java-library"
id "maven-publish"
}
description = 'gRPC: Census'
evaluationDependsOn(project(':grpc-api').path)
dependencies {
api project(':grpc-api')
guavaDependency 'implementation'
censusApiDependency 'implementation'
censusGrpcMetricDependency 'implementation'
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*'
}