18 lines
489 B
Groovy
18 lines
489 B
Groovy
// Set properties before any plugins get loaded
|
|
ext {
|
|
minJavaVersionForTests = JavaVersion.VERSION_1_8
|
|
}
|
|
|
|
apply from: "${rootDir}/gradle/instrumentation.gradle"
|
|
apply from: "${rootDir}/gradle/test-with-scala.gradle"
|
|
|
|
dependencies {
|
|
compileOnly deps.scala
|
|
|
|
testCompile deps.scala
|
|
testCompile group: 'com.typesafe.akka', name: 'akka-actor_2.11', version: '2.5.0'
|
|
|
|
testCompile project(':instrumentation:java-concurrent')
|
|
testCompile project(':instrumentation:trace-annotation')
|
|
}
|