Logging OTLP sdk dependencies (#5291)

This commit is contained in:
jack-berg 2023-03-29 15:43:17 -05:00 committed by GitHub
parent aad95f8f64
commit fcfbb32fcc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 6 deletions

View File

@ -9,9 +9,9 @@ description = "OpenTelemetry Protocol JSON Logging Exporters"
otelJava.moduleName.set("io.opentelemetry.exporter.logging.otlp")
dependencies {
compileOnly(project(":sdk:trace"))
compileOnly(project(":sdk:metrics"))
compileOnly(project(":sdk:logs"))
implementation(project(":sdk:trace"))
implementation(project(":sdk:metrics"))
implementation(project(":sdk:logs"))
implementation(project(":exporters:otlp:common"))
implementation(project(":sdk-extensions:autoconfigure-spi"))
@ -20,9 +20,6 @@ dependencies {
testImplementation(project(":sdk:testing"))
testImplementation(project(":sdk:logs-testing"))
testImplementation(project(":sdk:logs"))
testImplementation(project(":sdk:metrics"))
testImplementation(project(":sdk:trace"))
testImplementation("org.skyscreamer:jsonassert")
}