From 95c1cf642944fc856eee1a076b2a9202f2821f83 Mon Sep 17 00:00:00 2001 From: Ben Soares Date: Tue, 2 Jul 2019 13:34:23 +0100 Subject: [PATCH] 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). --- build.gradle | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) 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 +} -- 1.7.10.2