21 lines
449 B
Groovy
21 lines
449 B
Groovy
plugins {
|
|
id "java-library"
|
|
id "maven-publish"
|
|
}
|
|
|
|
description = 'OpenTelemetry SDK Testing utilities'
|
|
ext.moduleName = 'io.opentelemetry.sdk.testing'
|
|
|
|
dependencies {
|
|
api project(':opentelemetry-api')
|
|
api project(':opentelemetry-sdk')
|
|
|
|
compileOnly libraries.assertj
|
|
compileOnly libraries.junit
|
|
compileOnly libraries.junit_jupiter_api
|
|
|
|
testImplementation libraries.junit
|
|
|
|
annotationProcessor libraries.auto_value
|
|
}
|