Removed trampoline to allow unzipping by most unzip tools. (#149)

This commit is contained in:
Clinton 2017-12-01 14:46:32 +00:00 committed by GitHub
parent 63fca3e7c9
commit 7b54b82273
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -58,10 +58,6 @@ task buildDoormanJAR(type: FatCapsule, dependsOn: 'jar') {
minJavaVersion = '1.8.0'
jvmArgs = ['-XX:+UseG1GC']
}
// Make the resulting JAR file directly executable on UNIX by prepending a shell script to it.
// This lets you run the file like so: ./corda.jar
// Other than being slightly less typing, this has one big advantage: Ctrl-C works properly in the terminal.
reallyExecutable { trampolining() }
}
task buildHsmJAR(type: FatCapsule, dependsOn: 'jar') {
@ -74,10 +70,6 @@ task buildHsmJAR(type: FatCapsule, dependsOn: 'jar') {
minJavaVersion = '1.8.0'
jvmArgs = ['-XX:+UseG1GC']
}
// Make the resulting JAR file directly executable on UNIX by prepending a shell script to it.
// This lets you run the file like so: ./corda.jar
// Other than being slightly less typing, this has one big advantage: Ctrl-C works properly in the terminal.
reallyExecutable { trampolining() }
}
task integrationTest(type: Test) {