From 1298b8245b295a92a1dbe7e49bb491edb4042c7f Mon Sep 17 00:00:00 2001 From: felmer <felmer> Date: Wed, 20 Dec 2017 08:18:09 +0000 Subject: [PATCH] SSDM-5994: fixing bug SVN: 39065 --- openbis_standard_technologies/build.gradle | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/openbis_standard_technologies/build.gradle b/openbis_standard_technologies/build.gradle index 79109a22af1..dea678d2d24 100644 --- a/openbis_standard_technologies/build.gradle +++ b/openbis_standard_technologies/build.gradle @@ -395,9 +395,10 @@ task zipDss(type: Zip, dependsOn: signWebStartJars) { } task clientsAndApis(type: Zip, dependsOn: [dssClientZip, queryApiZip, apiV3Zip, proteomicsApiZip, screeningApiZip]) { + def pybisVersion = '1.4.1' baseName 'openBIS-clients-and-APIs' - downloadFile('https://sissource.ethz.ch/sispub/pybis/repository/release/1.4.1/archive.zip', 'pybis-1.4.1.zip') - from 'targets/downloads/pybis.zip' + downloadFile("https://sissource.ethz.ch/sispub/pybis/repository/release/${pybisVersion}/archive.zip", "pybis-${pybisVersion}.zip") + from "targets/downloads/pybis-${pybisVersion}.zip" from dssClientZip.archivePath from queryApiZip.archivePath from apiV3Zip.archivePath -- GitLab