From: Ben Soares Date: Tue, 2 Jul 2019 12:34:23 +0000 (+0100) Subject: JAL-3337 Excluding j11modDir from source distribution (has some older version jars... X-Git-Tag: Release_2_11_0~2^2~2^2~3 X-Git-Url: http://source.jalview.org/gitweb/?a=commitdiff_plain;h=95c1cf642944fc856eee1a076b2a9202f2821f83;p=jalview.git JAL-3337 Excluding j11modDir from source distribution (has some older version jars converted to mods and none of these files are used in the build -- jars are all in j11libDir and used as libs not mods). --- diff --git a/build.gradle b/build.gradle index 9c57524..76284e9 100644 --- a/build.gradle +++ b/build.gradle @@ -1208,6 +1208,9 @@ task sourceDist (type: Tar) { exclude (getdown_files_dir) exclude (getdown_website_dir) + // exluding these as not using jars as modules yet + exclude ("$j11modDir/**/*.jar") + } task helppages { @@ -1216,4 +1219,4 @@ task helppages { inputs.dir("$classes/$helpDir") outputs.file("build/distribution/help/helpTOC.html") -} \ No newline at end of file +}