-
Notifications
You must be signed in to change notification settings - Fork 169
/
build.gradle
34 lines (30 loc) · 983 Bytes
/
build.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
apply plugin: 'java'
repositories {
mavenCentral()
}
dependencies {
//implementation 'net.portswigger.burp.extender:burp-extender-api:1.7.13'
// implementation 'net.portswigger.burp.extender:burp-extender-api:2.3'
implementation 'org.apache.commons:commons-lang3:3.5'
implementation("com.google.guava:guava:32.1.3-jre")
implementation group: 'org.apache.commons', name: 'commons-collections4', version: '4.1'
implementation 'com.google.code.gson:gson:2.8.1'
implementation 'com.fasterxml.jackson.core:jackson-databind:2.9.0.pr4'
implementation 'org.jsoup:jsoup:1.8.1'
implementation files('bulkScan-all.jar')
}
sourceSets {
main {
java {
srcDir 'src'
}
resources {
srcDir 'resources'
}
}
}
task fatJar(type: Jar) {
duplicatesStrategy = DuplicatesStrategy.INCLUDE
from { configurations.compileClasspath.collect { it.isDirectory() ? it : zipTree(it) } }
with jar
}