mirror of
https://github.com/ethauvin/kobalt.git
synced 2025-04-27 16:48:12 -07:00
Fix expandJarFiles.
This commit is contained in:
parent
e015253f2d
commit
26fbf6164d
3 changed files with 25 additions and 17 deletions
|
@ -70,7 +70,8 @@ class JarGenerator @Inject constructor(val dependencyManager: DependencyManager)
|
|||
if (! seen.contains(file.path)) {
|
||||
seen.add(file.path)
|
||||
if (! KFiles.isExcluded(file, jar.excludes)) {
|
||||
result.add(IncludedFile(arrayListOf(IFileSpec.FileSpec(file.path))))
|
||||
result.add(IncludedFile(specs = arrayListOf(IFileSpec.FileSpec(file.path)),
|
||||
expandJarFiles = true))
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue