From 39fc60fc8b5c00e7615e39208a30b41646ae5dcf Mon Sep 17 00:00:00 2001 From: Rob Greene Date: Sat, 24 Nov 2018 00:35:56 -0600 Subject: [PATCH] Ensuring bastools gets added into resulting JAR files. --- build.gradle | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/build.gradle b/build.gradle index 8ac11b4..2703806 100644 --- a/build.gradle +++ b/build.gradle @@ -53,7 +53,8 @@ tasks.withType(Jar) { if (appendix) { from { configurations.runtime.collect { - it.name.startsWith('ShrinkItArchive') || it.name.startsWith('applesingle-api') ? zipTree(it) : 'fake' + it.name.startsWith('ShrinkItArchive') || it.name.startsWith('applesingle-api') || + it.name.startsWith('bastools-api') ? zipTree(it) : 'fake' } } }