Skip to content

Commit dbb153f

Browse files
committed
Prevent secondary outputs of Java 9 compilation getting packed into jar
Fixes #304
1 parent fbe2c91 commit dbb153f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

core/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -290,7 +290,7 @@ tasks {
290290
manifest {
291291
attributes("Multi-Release" to true)
292292
}
293-
from(compileJavaModuleInfo) {
293+
from(compileJavaModuleInfo.map { it.destinationDirectory }) {
294294
into("META-INF/versions/9/")
295295
}
296296
}

0 commit comments

Comments
 (0)