New lib versions and fixes.
This commit is contained in:
@ -37,13 +37,19 @@ dependencies {
|
|||||||
testCompile libraries.jsonpath
|
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 {
|
uploadArchives {
|
||||||
repositories {
|
repositories {
|
||||||
mavenDeployer { pom.artifactId = 'queryrest' }
|
mavenDeployer { pom.artifactId = 'queryrest' }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
task dropIt(dependsOn: build) {
|
task dropIt(dependsOn: build) {
|
||||||
doLast {
|
doLast {
|
||||||
exec{ executable "curl"; args "-X", "POST", "-F", "file=@build/libs/ch.psi.daq.queryrest-" + version + ".jar", "https://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"; }
|
||||||
|
Reference in New Issue
Block a user