mirror of
https://github.com/corda/corda.git
synced 2024-12-27 08:22:35 +00:00
Removed trampoline to allow unzipping by most unzip tools. (#149)
This commit is contained in:
parent
63fca3e7c9
commit
7b54b82273
@ -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) {
|
||||
|
Loading…
Reference in New Issue
Block a user