1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
|
plugins {
id "java-library"
id "maven-publish"
}
description = 'gRPC: Protobuf'
dependencies {
api project(':grpc-api'),
libraries.jsr305,
libraries.protobuf
implementation libraries.guava
api (libraries.google_api_protos) {
// 'com.google.api:api-common' transitively depends on auto-value, which breaks our
// annotations.
exclude group: 'com.google.api', module: 'api-common'
}
api (project(':grpc-protobuf-lite')) {
exclude group: 'com.google.protobuf', module: 'protobuf-javalite'
}
}
|