-
Notifications
You must be signed in to change notification settings - Fork 5
/
build.gradle
52 lines (42 loc) · 943 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
45
46
47
48
49
50
51
52
buildscript {
repositories {
mavenCentral()
}
}
plugins {
id 'java'
id 'jacoco'
id 'application'
id 'com.github.johnrengelman.shadow' version '8.1.1'
}
group 'ca.craigthomas'
version '1.0'
mainClassName = 'ca.craigthomas.yacoco3e.runner.Runner'
sourceCompatibility = 1.8
repositories {
mavenCentral()
}
dependencies {
implementation 'commons-io:commons-io:2.17.0'
implementation 'org.apache.commons:commons-lang3:3.17.0'
implementation 'com.beust:jcommander:1.82'
implementation 'org.yaml:snakeyaml:2.3'
testImplementation 'junit:junit:4.13.2'
testImplementation 'org.mockito:mockito-core:5.14.2'
}
jacocoTestReport {
reports {
xml.required = true
html.required = true
}
}
task stage {
dependsOn shadowJar
}
test {
testLogging {
outputs.upToDateWhen {false}
showStandardStreams = true
}
}
check.dependsOn jacocoTestReport