-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
41 lines (33 loc) · 809 Bytes
/
build.gradle
File metadata and controls
41 lines (33 loc) · 809 Bytes
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
40
41
plugins {
id 'java'
}
group = 'sh.arnaud'
version = '1.0.3-SNAPSHOT'
repositories {
mavenCentral()
}
dependencies {
testImplementation platform('org.junit:junit-bom:5.9.1')
testImplementation 'org.junit.jupiter:junit-jupiter'
implementation 'com.google.code.gson:gson:2.10.1'
implementation 'com.google.guava:guava-io:r03'
implementation 'net.portswigger.burp.extensions:montoya-api:2023.10.4'
}
test {
useJUnitPlatform()
}
jar {
from {
configurations.runtimeClasspath.collect {
if (it.isDirectory()) {
return it
}
if (!it.name.startsWith("montoya-api")) {
return zipTree(it)
}
}
}
manifest {
attributes 'Main-Class': 'sh.arnaud.javaserde.Main'
}
}