1
0
Fork 0
mirror of https://github.com/ethauvin/kobalt.git synced 2025-04-27 00:38:11 -07:00

Use commons-compress fast archive.

This commit is contained in:
Cedric Beust 2017-04-11 15:58:52 -07:00
parent 46f73ee5e7
commit c195a7bdf7
5 changed files with 101 additions and 56 deletions

View file

@ -88,7 +88,7 @@ class WarGenerator @Inject constructor(val dependencyManager: DependencyManager,
val jarFactory = { os: OutputStream -> JarOutputStream(os, manifest) }
return Archives.generateArchive(project, context, war.name, ".war", files,
false /* don't expand jar files */, jarFactory)
false /* don't expand jar files */, manifest)
}
}