forked from synfron/ReshaperForBurp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
36 lines (31 loc) · 1.08 KB
/
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
35
36
plugins {
id 'java'
}
group 'com.synfron.reshaper.burp'
version '1.2.1'
targetCompatibility = '15'
sourceCompatibility = '15'
repositories {
mavenCentral()
}
dependencies {
testCompile group: 'junit', name: 'junit', version: '4.12'
compileOnly 'org.projectlombok:lombok:1.18.20'
implementation 'net.portswigger.burp.extender:burp-extender-api:2.1'
implementation 'com.jayway.jsonpath:json-path:2.4.0'
implementation 'org.apache.httpcomponents:httpclient:4.5.13'
implementation 'org.jsoup:jsoup:1.13.1'
implementation 'com.miglayout:miglayout-swing:5.2'
implementation 'com.fasterxml.jackson.core:jackson-databind:2.11.3'
implementation 'net.jodah:expiringmap:0.5.9'
implementation 'org.mozilla:rhino:1.7.13'
implementation 'cat.inspiracio:rhino-js-engine:1.7.10'
implementation 'org.apache.commons:commons-lang3:3.11'
implementation 'commons-io:commons-io:2.8.0'
annotationProcessor 'org.projectlombok:lombok:1.18.20'
}
jar {
from {
configurations.runtimeClasspath.collect { it.isDirectory() ? it : zipTree(it) }
}
}