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 165fdd1 commit a87fd0eCopy full SHA for a87fd0e
instrumentation/resources/library/build.gradle.kts
@@ -88,10 +88,8 @@ testing {
88
tasks {
89
test {
90
dependsOn(jar)
91
- doFirst {
92
- // use the final jar instead of directories with built classes to test the mrjar functionality
93
- classpath = jar.get().outputs.files + classpath
94
- }
+ // use the final jar instead of directories with built classes to test the mrjar functionality
+ classpath = project.files(jar) + classpath
95
systemProperty("testSecret", "test")
96
systemProperty("testPassword", "test")
97
systemProperty("testNotRedacted", "test")
0 commit comments