16 lines
472 B
Plaintext
16 lines
472 B
Plaintext
plugins {
|
|
id("otel.library-instrumentation")
|
|
}
|
|
|
|
dependencies {
|
|
compileOnly("org.springframework:spring-web:3.1.0.RELEASE")
|
|
|
|
testImplementation("org.springframework:spring-web:3.1.0.RELEASE")
|
|
|
|
testImplementation(project(":testing-common"))
|
|
testImplementation("org.assertj:assertj-core")
|
|
testImplementation("org.mockito:mockito-core")
|
|
testImplementation("org.mockito:mockito-junit-jupiter")
|
|
testImplementation("io.opentelemetry:opentelemetry-sdk-testing")
|
|
}
|