-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathbuild.gradle
39 lines (33 loc) · 844 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
35
36
37
38
39
plugins {
id 'java'
id 'com.github.johnrengelman.shadow' version '8.1.1'
}
group 'com.github.d3mondev.burpvpsproxy'
version '1.0.0'
repositories {
mavenCentral()
}
dependencies {
implementation 'org.json:json:20230227'
implementation 'com.jcraft:jsch:0.1.55'
implementation 'net.portswigger.burp.extender:burp-extender-api:2.1'
implementation 'com.myjeeva.digitalocean:digitalocean-api-client:2.17'
implementation 'software.amazon.awssdk:ec2:2.20.37'
implementation 'software.amazon.awssdk:core:2.20.37'
}
sourceSets {
main {
java {
srcDir 'src'
}
resources {
srcDir 'resources'
}
}
}
shadowJar {
archiveBaseName = project.name
archiveVersion = ''
archiveFileName = archiveBaseName.get() + ".jar"
}
build.dependsOn shadowJar