From 10adcd5e4baa69f776b1ef696d7d739cc6fa8fb8 Mon Sep 17 00:00:00 2001 From: Jim Procter Date: Wed, 30 Mar 2022 16:12:51 +0100 Subject: [PATCH] JAL-3973 exclude the original RELEASE file so gradle doesn't complain of duplicate entries in the tarball --- build.gradle | 2 ++ 1 file changed, 2 insertions(+) diff --git a/build.gradle b/build.gradle index a071fe8..b4636bc 100644 --- a/build.gradle +++ b/build.gradle @@ -2042,6 +2042,7 @@ task sourceDist(type: Tar) { dependsOn eclipseAllPreferences dependsOn createSourceReleaseProperties + def VERSION_UNDERSCORES = JALVIEW_VERSION.replaceAll("\\.", "_") def outputFileName = "${project.name}_${VERSION_UNDERSCORES}.tar.gz" archiveFileName = outputFileName @@ -2065,6 +2066,7 @@ task sourceDist(type: Tar) { "*locales/**", "utils/InstallAnywhere", "**/*.log", + "RELEASE", ] def PROCESS_FILES=[ "AUTHORS", -- 1.7.10.2