mirror of https://github.com/grpc/grpc-java.git
all: Add opentelemetry
This adds opentelemetry to the shared javadoc (but also other things like having its tests contribute to code coverage).
This commit is contained in:
parent
e82b8f0674
commit
d9e09c285b
|
|
@ -15,6 +15,7 @@ def subprojects = [
|
||||||
project(':grpc-inprocess'),
|
project(':grpc-inprocess'),
|
||||||
project(':grpc-netty'),
|
project(':grpc-netty'),
|
||||||
project(':grpc-okhttp'),
|
project(':grpc-okhttp'),
|
||||||
|
project(':grpc-opentelemetry'),
|
||||||
project(':grpc-protobuf'),
|
project(':grpc-protobuf'),
|
||||||
project(':grpc-protobuf-lite'),
|
project(':grpc-protobuf-lite'),
|
||||||
project(':grpc-rls'),
|
project(':grpc-rls'),
|
||||||
|
|
|
||||||
|
|
@ -41,3 +41,7 @@ tasks.named("compileJava").configure {
|
||||||
".*/build/generated/sources/annotationProcessor/java/.*",
|
".*/build/generated/sources/annotationProcessor/java/.*",
|
||||||
"|")
|
"|")
|
||||||
}
|
}
|
||||||
|
|
||||||
|
tasks.named("javadoc").configure {
|
||||||
|
exclude 'io/grpc/opentelemetry/internal/**'
|
||||||
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue