20 lines
559 B
Groovy
20 lines
559 B
Groovy
// Set properties before any plugins get loaded
|
|
project.ext {
|
|
// Execute tests on all JVMs, even rare and outdated ones
|
|
coreJavaInstrumentation = true
|
|
}
|
|
|
|
apply from: "${rootDir}/gradle/java.gradle"
|
|
apply from: "${rootDir}/gradle/test-with-scala.gradle"
|
|
|
|
dependencies {
|
|
compileOnly deps.scala
|
|
|
|
testCompile project(':dd-trace-api')
|
|
testCompile deps.scala
|
|
|
|
testCompile project(':dd-java-agent:testing')
|
|
testCompile project(':dd-java-agent:instrumentation:java-concurrent')
|
|
testCompile project(':dd-java-agent:instrumentation:trace-annotation')
|
|
}
|