2019-09-08 00:27:32 +08:00
|
|
|
plugins {
|
2020-05-05 07:44:30 +08:00
|
|
|
id "java-library"
|
2019-09-08 00:27:32 +08:00
|
|
|
id "maven-publish"
|
2019-09-08 01:23:23 +08:00
|
|
|
|
|
|
|
id "me.champeau.gradle.japicmp"
|
2019-09-08 01:38:58 +08:00
|
|
|
id "ru.vyarus.animalsniffer"
|
2019-09-08 00:27:32 +08:00
|
|
|
}
|
|
|
|
|
2015-01-28 02:25:39 +08:00
|
|
|
description = "gRPC: Stub"
|
2014-12-16 01:58:05 +08:00
|
|
|
dependencies {
|
2021-06-12 05:01:18 +08:00
|
|
|
api project(':grpc-api'),
|
|
|
|
libraries.guava
|
2022-06-14 03:09:30 +08:00
|
|
|
implementation libraries.errorprone.annotations
|
2020-05-05 07:44:30 +08:00
|
|
|
testImplementation libraries.truth,
|
2018-06-12 09:35:18 +08:00
|
|
|
project(':grpc-testing')
|
2018-08-10 00:09:21 +08:00
|
|
|
signature "org.codehaus.mojo.signature:java17:1.0@signature"
|
2022-01-19 00:36:23 +08:00
|
|
|
signature "net.sf.androidscents.signature:android-api-level-14:4.0_r4@signature"
|
2015-05-06 01:28:38 +08:00
|
|
|
}
|
|
|
|
|
2020-06-11 03:20:10 +08:00
|
|
|
javadoc {
|
|
|
|
exclude 'io/grpc/stub/Internal*'
|
|
|
|
}
|