-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathbuild.gradle
More file actions
38 lines (32 loc) · 859 Bytes
/
build.gradle
File metadata and controls
38 lines (32 loc) · 859 Bytes
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
35
36
37
38
apply plugin: 'java'
repositories {
mavenCentral()
}
dependencies {
compile 'net.portswigger.burp.extender:burp-extender-api:1.7.13'
compile 'org.apache.commons:commons-lang3:3.5'
compile group: 'org.apache.commons', name: 'commons-collections4', version: '4.1'
compile 'com.google.code.gson:gson:2.8.1'
compile 'com.fasterxml.jackson.core:jackson-databind:2.9.0.pr4'
compile 'org.jsoup:jsoup:1.8.1'
compile files('albinowaxUtils-all.jar')
}
sourceSets {
main {
java {
srcDir 'src'
}
resources {
srcDir 'resources'
}
}
}
task fatJar(type: Jar) {
baseName = project.name + '-all'
from { configurations.compile.collect { it.isDirectory() ? it : zipTree(it) } }
with jar
}
compileJava {
targetCompatibility '1.8'
sourceCompatibility '1.8'
}