CORS moved to domain project (to be used in dispatcherrest and

queryrest), buildship / gradle wrapper upgrades
This commit is contained in:
Christof Zellweger
2017-04-10 13:31:00 +02:00
parent 000f078ca2
commit b7fe83ed65
6 changed files with 16 additions and 138 deletions

View File

@ -51,6 +51,10 @@ uploadArchives {
}
}
task dropIt(dependsOn: build) << {
exec{ executable "curl"; args "-X", "POST", "-F", "file=@build/libs/ch.psi.daq.queryrest-" + version + ".jar", "https://dropit.psi.ch/upload"; }
}
task dropIt(dependsOn: build) {
doLast {
exec{ executable "curl"; args "-X", "POST", "-F", "file=@build/libs/ch.psi.daq.queryrest-" + version + ".jar", "https://dropit.psi.ch/upload"; }
}
}