-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.gradle
executable file
·50 lines (39 loc) · 1.1 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
plugins {
id 'java'
id 'application'
}
group 'pekaeds'
version '0.16'
repositories {
mavenCentral()
}
java {
sourceCompatibility = JavaVersion.toVersion('1.21')
targetCompatibility = JavaVersion.toVersion('1.21')
}
dependencies {
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.8.1'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.8.1'
implementation 'org.tinylog:tinylog-api:2.6.0'
implementation 'org.tinylog:tinylog-impl:2.6.0'
implementation 'com.formdev:flatlaf:3.5.2'
implementation 'com.miglayout:miglayout-swing:11.0'
implementation 'org.json:json:20231013'
implementation 'com.fasterxml.jackson.core:jackson-databind:2.14.0'
implementation 'com.fasterxml.jackson.dataformat:jackson-dataformat-cbor:2.14.0'
}
application {
mainClass = 'pekaeds.PekaEDS'
}
jar {
duplicatesStrategy = DuplicatesStrategy.EXCLUDE
manifest {
attributes "Main-Class": "pekaeds.PekaEDS"
}
from {
configurations.runtimeClasspath.collect { it.isDirectory() ? it : zipTree(it) }
}
}
test {
useJUnitPlatform()
}