New lib versions and fixes.

This commit is contained in:
Fabian Märki
2018-08-24 12:27:03 +02:00
parent bd1e081abb
commit 1c6b5cd4ef

View File

@ -37,13 +37,19 @@ dependencies {
testCompile libraries.jsonpath
}
jar {
// make sure "normal" jar is also build (for include in daqlocal)
enabled = true
// make sure "normal" jar will not overwritte by "executable" jar
classifier = 'normal'
}
uploadArchives {
repositories {
mavenDeployer { pom.artifactId = 'queryrest' }
}
}
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"; }