10 lines
352 B
Groovy
10 lines
352 B
Groovy
apply from: "$rootDir/gradle/java.gradle"
|
|
|
|
dependencies {
|
|
// For testing javaagent-bootstrap's Caffeine patch, we need to compile against our cache API
|
|
// but make sure to run against javaagent-bootstrap
|
|
testCompileOnly project(':instrumentation-api-caching')
|
|
testRuntimeOnly project(":javaagent-bootstrap")
|
|
|
|
testImplementation deps.assertj
|
|
} |