Update: Gradle Project

This commit is contained in:
AnonymousUser
2020-10-07 01:27:37 +08:00
parent 91dc5f22f6
commit 6e5c60a738
48 changed files with 25 additions and 3947 deletions

24
build.gradle Normal file
View File

@@ -0,0 +1,24 @@
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 '.'
}
}
}
task fatJar(type: Jar) {
baseName = project.name + '-all'
from { configurations.compile.collect { it.isDirectory() ? it : zipTree(it) } }
with jar
}