-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathbuild.gradle
32 lines (27 loc) · 1000 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
apply plugin: 'java'
repositories {
mavenCentral()
}
dependencies {
// https://mvnrepository.com/artifact/com.warrenstrange/googleauth
implementation group: 'com.warrenstrange', name: 'googleauth', version: '1.5.0'
// https://mvnrepository.com/artifact/net.portswigger.burp.extender/burp-extender-api
implementation group: 'net.portswigger.burp.extender', name: 'burp-extender-api', version: '2.3'
// https://mvnrepository.com/artifact/junit/junit
testImplementation group: 'junit', name: 'junit', version: '4.13.2'
// https://mvnrepository.com/artifact/org.slf4j/slf4j-simple
testImplementation group: 'org.slf4j', name: 'slf4j-simple', version: '2.0.0-alpha5'
}
test {
testLogging.showStandardStreams = true
}
task fatJar(type: Jar) {
baseName = project.name + '-all'
duplicatesStrategy = 'exclude'
from {
configurations.runtimeClasspath.collect {
it.isDirectory() ? it : zipTree(it)
}
}
with jar
}