We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2109619 commit 5dbec34Copy full SHA for 5dbec34
README.md
@@ -211,8 +211,11 @@ dependencies {
211
...
212
compile 'com.nordstrom.tools:junit-foundation:11.3.0'
213
}
214
+ext {
215
+ junitFoundation = configurations.compile.resolvedConfiguration.resolvedArtifacts.find { it.name == 'junit-foundation' }
216
+}
217
test.doFirst {
- jvmArgs "-javaagent:${classpath.find { it.name == 'junit-foundation' }.absolutePath}"
218
+ jvmArgs "-javaagent:${junitFoundation.file}"
219
220
test {
221
// debug true
0 commit comments