-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.gradle
51 lines (42 loc) · 906 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
plugins {
id 'com.github.johnrengelman.shadow' version '4.0.3'
id 'java'
id 'application'
id 'checkstyle'
id 'jacoco'
}
mainClassName = 'main.App'
dependencies {
compile 'com.google.guava:guava:23.0'
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.3.2'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.3.2'
}
repositories {
jcenter()
}
test {
useJUnitPlatform()
}
jacoco {
toolVersion = '0.8.2'
}
jacocoTestReport {
reports {
xml.enabled = true
html.enabled = true
}
afterEvaluate {
classDirectories = files(classDirectories.files.collect {
fileTree(dir: it, exclude: ['main/**', 'ui/**', 'io/**', 'benchmark/**'])
})
}
}
jar {
manifest {
attributes 'Main-Class': 'main.App'
}
}
run {
standardInput = System.in
}
check.dependsOn jacocoTestReport