21 lines
471 B
Groovy
21 lines
471 B
Groovy
plugins {
|
|
id "java-library"
|
|
id "maven-publish"
|
|
|
|
id "ru.vyarus.animalsniffer"
|
|
}
|
|
|
|
description = 'OpenTelemetry Contrib Logging Support'
|
|
ext.moduleName = "io.opentelemetry.sdk.extension.logging"
|
|
|
|
dependencies {
|
|
api project(':sdk:all')
|
|
|
|
implementation project(':api:metrics')
|
|
|
|
implementation "com.fasterxml.jackson.core:jackson-databind"
|
|
testImplementation "org.awaitility:awaitility"
|
|
|
|
annotationProcessor "com.google.auto.value:auto-value"
|
|
}
|