-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
44 lines (33 loc) · 1001 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
35
36
37
38
39
40
41
42
43
44
plugins {
id 'java'
id 'application'
id 'com.github.johnrengelman.shadow' version '8.1.1'
}
application {
mainClass = 'com.ngm.Main'
applicationName = 'tcpping'
// jpackage {
// installerDir = file('build/installer')
// }
}
repositories {
mavenCentral()
}
dependencies {
testImplementation 'org.junit.jupiter:junit-jupiter:5.8.0'
implementation 'ch.qos.logback:logback-classic:1.4.8'
implementation 'ch.qos.logback:logback-core:1.4.8'
implementation 'org.tuxdude.logback.extensions:logback-colorizer:1.0.1'
// https://mvnrepository.com/artifact/com.mitchtalmadge/ascii-data
implementation group: 'com.mitchtalmadge', name: 'ascii-data', version: '1.4.0'
// https://mvnrepository.com/artifact/io.github.cdimascio/java-dotenv
implementation group: 'io.github.cdimascio', name: 'java-dotenv', version: '5.2.2'
}
test {
useJUnitPlatform()
}
jar {
manifest {
attributes 'Main-Class': 'com.ngm.Main'
}
}