BApp update

This commit is contained in:
PortSwigger Support
2020-11-12 14:22:18 +00:00
parent d0a61ba9ac
commit df0f4bd41b
3 changed files with 8 additions and 2 deletions

View File

@@ -20,6 +20,10 @@ sourceSets {
targetCompatibility = '1.8'
sourceCompatibility = '1.8'
compileJava {
options.encoding = "UTF-8"
}
task fatJar(type: Jar) {
baseName = project.name + '-all'
from { configurations.compile.collect { it.isDirectory() ? it : zipTree(it) } }