mirror of
https://github.com/AntennaPod/AntennaPod.git
synced 2026-08-18 02:53:10 +00:00
14 lines
232 B
Groovy
14 lines
232 B
Groovy
configurations {
|
|
mockitoAgent
|
|
}
|
|
|
|
dependencies {
|
|
mockitoAgent(libs.mockito.core) {
|
|
transitive = false
|
|
}
|
|
}
|
|
|
|
tasks.withType(Test).configureEach {
|
|
jvmArgs "-javaagent:${configurations.mockitoAgent.singleFile}"
|
|
}
|