修复 fat jar 签名文件冲突导致 EXE 启动失败

main
SLMS Development Team 5 months ago
parent de89a4fff3
commit 432913aa80

@ -51,6 +51,10 @@ tasks.register('fatJar', Jar) {
configurations.runtimeClasspath.collect { it.isDirectory() ? it : zipTree(it) }
}
with jar
// SecurityException
exclude 'META-INF/*.SF'
exclude 'META-INF/*.DSA'
exclude 'META-INF/*.RSA'
}
jar {

@ -51,6 +51,10 @@ tasks.register('fatJar', Jar) {
configurations.runtimeClasspath.collect { it.isDirectory() ? it : zipTree(it) }
}
with jar
// SecurityException
exclude 'META-INF/*.SF'
exclude 'META-INF/*.DSA'
exclude 'META-INF/*.RSA'
}
jar {

Binary file not shown.
Loading…
Cancel
Save