DropIt uses https.

This commit is contained in:
Fabian Märki
2017-01-20 16:29:58 +01:00
parent 8ad2835629
commit 2813d5a4d4
3 changed files with 6 additions and 4 deletions

View File

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