-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathbuild.gradle
34 lines (29 loc) · 894 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'
sourceCompatibility = 21
targetCompatibility = 21
repositories {
mavenCentral()
}
dependencies {
implementation 'net.portswigger.burp.extender:burp-extender-api:2.3'
//implementation files('montoya-api-2024.12.3.jar')
implementation 'net.portswigger.burp.extensions:montoya-api:2023.10.3'
implementation 'org.apache.commons:commons-lang3:3.5'
implementation group: 'org.apache.commons', name: 'commons-collections4', version: '4.1'
}
sourceSets {
main {
java {
srcDir 'src'
}
// resources {
// srcDir 'resources'
// }
}
}
archivesBaseName = ('albinowaxUtils-all')
task fatJar(type: Jar) {
duplicatesStrategy = DuplicatesStrategy.INCLUDE
from { configurations.compileClasspath.collect { it.isDirectory() ? it : zipTree(it) } }
with jar
}