-
Notifications
You must be signed in to change notification settings - Fork 10
/
build.gradle
33 lines (28 loc) · 1.06 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
plugins {
id 'java-library'
}
version '0.2.9-all'
compileJava.sourceCompatibility = JavaVersion.VERSION_17
compileJava.targetCompatibility = JavaVersion.VERSION_17
java.toolchain.languageVersion = JavaLanguageVersion.of(19)
repositories {
mavenCentral()
}
dependencies {
implementation 'net.portswigger.burp.extender:burp-extender-api:2.1'
implementation 'com.google.code.gson:gson:2.10.+'
implementation platform('software.amazon.awssdk:bom:2.20.+')
implementation 'software.amazon.awssdk:auth'
implementation 'software.amazon.awssdk:sts'
implementation 'software.amazon.awssdk:apache-client'
implementation 'software.amazon.awssdk:profiles'
implementation 'org.slf4j:slf4j-simple:1.7.+'
implementation 'org.apache.commons:commons-lang3:3.12.+'
compileOnly 'org.projectlombok:lombok:1.18.+'
annotationProcessor 'org.projectlombok:lombok:1.18.+'
}
task bigJar(type: Jar) {
duplicatesStrategy = DuplicatesStrategy.INCLUDE
from { configurations.compileClasspath.collect { it.isDirectory() ? it : zipTree(it) } }
with jar
}