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"
|
2023-07-26 00:00:11 +08:00
|
|
|
|
|
|
|
tasks.named("jar").configure {
|
|
|
|
manifest {
|
|
|
|
attributes('Automatic-Module-Name': 'io.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,
|
2023-12-16 07:14:29 +08:00
|
|
|
project(':grpc-inprocess'),
|
2023-12-15 15:00:30 +08:00
|
|
|
project(':grpc-testing'),
|
|
|
|
testFixtures(project(':grpc-api'))
|
2022-08-11 03:41:57 +08:00
|
|
|
signature libraries.signature.java
|
|
|
|
signature libraries.signature.android
|
2015-05-06 01:28:38 +08:00
|
|
|
}
|
|
|
|
|
2022-07-02 06:48:38 +08:00
|
|
|
tasks.named("javadoc").configure {
|
2020-06-11 03:20:10 +08:00
|
|
|
exclude 'io/grpc/stub/Internal*'
|
|
|
|
}
|