From: Ben Soares Date: Thu, 4 Jul 2019 13:43:47 +0000 (+0100) Subject: JAL-3225 try/catch for non-deprecated/deprecated property in sourceDist which is... X-Git-Tag: Release_2_11_1_0~32^2 X-Git-Url: http://source.jalview.org/gitweb/?p=jalview.git;a=commitdiff_plain;h=f877093c5722f61157bc42af839a96e5f35f1050 JAL-3225 try/catch for non-deprecated/deprecated property in sourceDist which is not available on older eclipses --- diff --git a/build.gradle b/build.gradle index 861fa21..0f0b8ff 100644 --- a/build.gradle +++ b/build.gradle @@ -1170,7 +1170,13 @@ clean { task sourceDist (type: Tar) { def VERSION_UNDERSCORES = JALVIEW_VERSION.replaceAll("\\.", "_") - archiveFileName = project.name + "_" + VERSION_UNDERSCORES + ".tar.gz" + def outputFileName = project.name + "_" + VERSION_UNDERSCORES + ".tar.gz" + // cater for buildship < 3.1 [3.0.1 is max version in eclipse 2018-09] + try { + archiveFileName = outputFileName + } catch (Exception e) { + archiveName = outputFileName + } compression Compression.GZIP