Ensuring bastools gets added into resulting JAR files.

This commit is contained in:
Rob Greene 2018-11-24 00:35:56 -06:00
parent 26ff14e0ea
commit 39fc60fc8b
1 changed files with 2 additions and 1 deletions

View File

@ -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'
}
}
}