Files
HaE/build.gradle
PortSwigger Support 78628b03d1 BApp preparation
2020-10-08 10:06:10 +00:00

28 lines
482 B
Groovy

apply plugin: 'java'
repositories {
mavenCentral()
}
dependencies {
compile 'net.portswigger.burp.extender:burp-extender-api:1.7.13'
compile 'org.json:json:20200518'
}
sourceSets {
main {
java {
srcDir '.'
}
}
}
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
}