BApp preparation

This commit is contained in:
PortSwigger Support
2020-10-08 10:06:10 +00:00
parent 1df27ea121
commit 78628b03d1
3 changed files with 23 additions and 1 deletions

View File

@@ -17,8 +17,11 @@ sourceSets {
}
}
targetCompatibility = '1.8'
sourceCompatibility = '1.8'
task fatJar(type: Jar) {
baseName = project.name + '-all'
from { configurations.compile.collect { it.isDirectory() ? it : zipTree(it) } }
with jar
}
}