-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.gradle
69 lines (58 loc) · 1.25 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
plugins {
alias(libs.plugins.shadow)
id 'application'
id 'java'
id 'jacoco'
}
repositories {
mavenCentral()
}
dependencies {
implementation libs.commons.lang3
implementation libs.log4j
testImplementation libs.junit.api
testImplementation libs.junit.engine
testImplementation libs.mockito
}
group = 'com.cellar'
version = '0.0.1-SNAPSHOT'
description = 'A simple Christmas greeter'
java {
toolchain {
languageVersion = JavaLanguageVersion.of(19)
}
}
test {
useJUnitPlatform()
finalizedBy jacocoTestReport
}
jacoco {
toolVersion = libs.versions.jacoco.get()
}
jacocoTestReport {
reports {
xml.required = true
}
afterEvaluate {
classDirectories.setFrom(files(classDirectories.files.collect {
fileTree(dir: it, exclude: [
"com/cellar/greeter/runner/Main.class",
"META-INF/**"
])
}))
}
}
tasks.withType(JavaCompile).configureEach {
options.encoding = 'UTF-8'
}
application {
mainClass = 'com.cellar.greeter.runner.Main'
}
shadowJar {
archiveBaseName.set('Greeter')
archiveClassifier.set('shadow')
archiveVersion.set('')
manifest {
attributes('Multi-Release': true)
}
}