mirror of https://github.com/grpc/grpc-java.git
33 lines
883 B
Groovy
33 lines
883 B
Groovy
plugins {
|
|
id "java-library"
|
|
id "maven-publish"
|
|
|
|
id "ru.vyarus.animalsniffer"
|
|
}
|
|
|
|
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
|
|
|
|
signature libraries.signature.java
|
|
signature libraries.signature.android
|
|
}
|
|
|
|
tasks.named("javadoc").configure {
|
|
failOnError false // no public or protected classes found to document
|
|
exclude 'io/grpc/census/internal/**'
|
|
exclude 'io/grpc/census/Internal*'
|
|
}
|