22 lines
553 B
Groovy
22 lines
553 B
Groovy
apply from: "$rootDir/gradle/instrumentation.gradle"
|
|
apply from: "$rootDir/gradle/test-with-scala.gradle"
|
|
|
|
muzzle {
|
|
pass {
|
|
group = 'com.typesafe.akka'
|
|
module = 'akka-actor_2.11'
|
|
versions = "[2.5.0,)"
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation project(':instrumentation:executors:javaagent')
|
|
compileOnly "com.typesafe.akka:akka-actor_2.11:2.5.0"
|
|
|
|
testImplementation deps.scala
|
|
testImplementation "com.typesafe.akka:akka-actor_2.11:2.5.0"
|
|
}
|
|
|
|
tasks.withType(Test).configureEach {
|
|
jvmArgs '-Dotel.instrumentation.akka-actor.enabled=true'
|
|
} |