89 lines
2.3 KiB
Plaintext
89 lines
2.3 KiB
Plaintext
plugins {
|
|
id("otel.protobuf-conventions")
|
|
id("otel.publish-conventions")
|
|
|
|
id("otel.animalsniffer-conventions")
|
|
|
|
id("com.squareup.wire")
|
|
}
|
|
|
|
description = "OpenTelemetry - Jaeger Remote sampler"
|
|
otelJava.moduleName.set("io.opentelemetry.sdk.extension.trace.jaeger")
|
|
|
|
dependencies {
|
|
api(project(":sdk:all"))
|
|
compileOnly(project(":sdk-extensions:autoconfigure"))
|
|
|
|
implementation(project(":sdk:all"))
|
|
implementation(project(":exporters:common"))
|
|
|
|
implementation("com.squareup.okhttp3:okhttp")
|
|
|
|
compileOnly("io.grpc:grpc-api")
|
|
compileOnly("io.grpc:grpc-protobuf")
|
|
compileOnly("io.grpc:grpc-stub")
|
|
|
|
testImplementation(project(":sdk:testing"))
|
|
testImplementation(project(":sdk-extensions:autoconfigure"))
|
|
testImplementation("com.google.protobuf:protobuf-java-util")
|
|
testImplementation("com.linecorp.armeria:armeria-junit5")
|
|
testImplementation("com.linecorp.armeria:armeria-grpc-protocol")
|
|
testImplementation("org.testcontainers:junit-jupiter")
|
|
}
|
|
|
|
testing {
|
|
suites {
|
|
val testGrpcNetty by registering(JvmTestSuite::class) {
|
|
dependencies {
|
|
implementation(project(":sdk:testing"))
|
|
implementation(project(":exporters:common"))
|
|
|
|
implementation("com.google.protobuf:protobuf-java-util")
|
|
implementation("com.linecorp.armeria:armeria-junit5")
|
|
implementation("com.linecorp.armeria:armeria-grpc-protocol")
|
|
implementation("org.testcontainers:junit-jupiter")
|
|
implementation("io.grpc:grpc-netty")
|
|
implementation("io.grpc:grpc-stub")
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
afterEvaluate {
|
|
// Classpath when compiling testGrpcNetty, we add dependency management directly
|
|
// since it doesn't follow Gradle conventions of naming / properties.
|
|
dependencies {
|
|
add("testGrpcNettyCompileProtoPath", platform(project(":dependencyManagement")))
|
|
}
|
|
}
|
|
|
|
tasks {
|
|
check {
|
|
dependsOn(testing.suites)
|
|
}
|
|
}
|
|
|
|
wire {
|
|
custom {
|
|
schemaHandlerFactoryClass = "io.opentelemetry.gradle.ProtoFieldsWireHandlerFactory"
|
|
}
|
|
}
|
|
|
|
// Declare sourcesJar dependency on proto generation so gradle doesn't complain about implicit dependency
|
|
tasks.getByName("sourcesJar").dependsOn("generateMainProtos")
|
|
|
|
sourceSets {
|
|
main {
|
|
java.srcDir("$buildDir/generated/source/wire")
|
|
}
|
|
}
|
|
|
|
tasks {
|
|
compileJava {
|
|
with(options) {
|
|
// Generated code so can't control serialization.
|
|
compilerArgs.add("-Xlint:-serial")
|
|
}
|
|
}
|
|
}
|