2020-10-07 01:27:37 +08:00
|
|
|
apply plugin: 'java'
|
|
|
|
|
|
|
|
|
|
repositories {
|
|
|
|
|
mavenCentral()
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
|
compile 'net.portswigger.burp.extender:burp-extender-api:1.7.13'
|
2020-11-12 22:54:34 +08:00
|
|
|
compile 'net.sourceforge.jregex:jregex:1.2_01'
|
2020-10-07 01:27:37 +08:00
|
|
|
compile 'org.json:json:20200518'
|
2020-12-04 16:00:40 +08:00
|
|
|
compile 'dk.brics.automaton:automaton:1.11-8'
|
2020-10-07 01:27:37 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
sourceSets {
|
|
|
|
|
main {
|
|
|
|
|
java {
|
|
|
|
|
srcDir '.'
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2020-10-08 10:06:10 +00:00
|
|
|
targetCompatibility = '1.8'
|
|
|
|
|
sourceCompatibility = '1.8'
|
|
|
|
|
|
2020-11-12 14:22:18 +00:00
|
|
|
compileJava {
|
|
|
|
|
options.encoding = "UTF-8"
|
|
|
|
|
}
|
|
|
|
|
|
2020-10-07 01:27:37 +08:00
|
|
|
task fatJar(type: Jar) {
|
|
|
|
|
baseName = project.name + '-all'
|
|
|
|
|
from { configurations.compile.collect { it.isDirectory() ? it : zipTree(it) } }
|
|
|
|
|
with jar
|
2020-10-08 10:06:10 +00:00
|
|
|
}
|