mirror of https://github.com/grpc/grpc-java.git
48 lines
1.1 KiB
Groovy
48 lines
1.1 KiB
Groovy
plugins {
|
|
id "java"
|
|
id "maven-publish"
|
|
|
|
id "com.google.protobuf"
|
|
id "me.champeau.gradle.japicmp"
|
|
id "ru.vyarus.animalsniffer"
|
|
}
|
|
|
|
description = "gRPC: GRPCLB LoadBalancer plugin"
|
|
|
|
tasks.named("jar").configure {
|
|
manifest {
|
|
attributes('Automatic-Module-Name': 'io.grpc.grpclb')
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation project(':grpc-core'),
|
|
project(':grpc-protobuf'),
|
|
project(':grpc-stub'),
|
|
libraries.protobuf.java,
|
|
libraries.protobuf.java.util,
|
|
libraries.guava
|
|
runtimeOnly libraries.errorprone.annotations
|
|
compileOnly libraries.javax.annotation
|
|
testImplementation libraries.truth,
|
|
project(':grpc-inprocess'),
|
|
testFixtures(project(':grpc-core'))
|
|
|
|
signature libraries.signature.java
|
|
}
|
|
|
|
configureProtoCompilation()
|
|
|
|
tasks.named("javadoc").configure {
|
|
exclude 'io/grpc/grpclb/Internal*'
|
|
}
|
|
|
|
tasks.named("jacocoTestReport").configure {
|
|
classDirectories.from = sourceSets.main.output.collect {
|
|
fileTree(dir: it,
|
|
exclude: [
|
|
'**/io/grpc/lb/v1/**',
|
|
])
|
|
}
|
|
}
|