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

2
.gitignore vendored Normal file
View File

@@ -0,0 +1,2 @@
.gradle/
build/

View File

@@ -2,8 +2,8 @@ Uuid: a7609ae2055342e9b6ffcf7cbcacf019
ExtensionType: 1
Name: Highlighter And Extractor
RepoName: highlighter-and-extractor
ScreenVersion: 1.1
SerialVersion: 1
ScreenVersion: 1.4.1
SerialVersion: 3
MinPlatformVersion: 0
ProOnly: False
Author: gh0stkey

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) } }