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 1a0d6be commit 5b68095Copy full SHA for 5b68095
enigma/build.gradle
@@ -131,14 +131,18 @@ def registerTestJarTasks(String name, String... input) {
131
132
configuration confFileArg
133
134
+ final outDir = project.layout.buildDirectory.map { it.dir('test-obf') }
135
+
136
+ printmapping(outDir.map { it.dir("${name}.map") })
137
138
libraryjars(
139
[jarfilter: '!**.jar', filter: '!module-info.class'],
140
"${System.getProperty('java.home')}/jmods/java.base.jmod"
141
)
142
143
injars testJar.map { it.archiveFile }
144
- outjars file("build/test-obf/${name}.jar")
145
+ outjars outDir.map { it.dir("${name}.jar") }
146
}
147
148
test.dependsOn(testObf)
0 commit comments