14 lines
477 B
Groovy
14 lines
477 B
Groovy
apply from: "$rootDir/gradle/instrumentation-library.gradle"
|
|
|
|
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"
|
|
}
|