From 1c6b5cd4ef5d041f8d4411557d357b2156b8c87c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fabian=20M=C3=A4rki?= Date: Fri, 24 Aug 2018 12:27:03 +0200 Subject: [PATCH] New lib versions and fixes. --- build.gradle | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/build.gradle b/build.gradle index 7aa48a4..4d78cc1 100644 --- a/build.gradle +++ b/build.gradle @@ -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"; }