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:
Eric Anderson 2024-05-14 09:47:40 -07:00
parent e82b8f0674
commit d9e09c285b
2 changed files with 5 additions and 0 deletions

View File

@ -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'),

View File

@ -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/**'
}