mirror of https://github.com/grpc/grpc-java.git
23 lines
511 B
Groovy
23 lines
511 B
Groovy
plugins {
|
|
id "java-library"
|
|
id "maven-publish"
|
|
|
|
id "me.champeau.gradle.japicmp"
|
|
id "ru.vyarus.animalsniffer"
|
|
}
|
|
|
|
description = "gRPC: Stub"
|
|
dependencies {
|
|
api project(':grpc-api'),
|
|
libraries.guava
|
|
implementation libraries.errorprone.annotations
|
|
testImplementation libraries.truth,
|
|
project(':grpc-testing')
|
|
signature libraries.signature.java
|
|
signature libraries.signature.android
|
|
}
|
|
|
|
tasks.named("javadoc").configure {
|
|
exclude 'io/grpc/stub/Internal*'
|
|
}
|