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