-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.gradle
64 lines (56 loc) · 1.3 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
plugins {
id 'java'
id 'checkstyle'
id 'application'
id 'jacoco'
alias libs.plugins.task.tree
}
group = 'io.huangsam'
version = '1.0-SNAPSHOT'
repositories {
mavenCentral()
}
dependencies {
compileOnly libs.jetbrains.annotations
implementation libs.bundles.google.all
implementation libs.dropbox.sdk
implementation libs.logback.classic
implementation libs.metadata.extractor
implementation libs.slf4j.api
testCompileOnly libs.jetbrains.annotations
testImplementation libs.bundles.mockito.all
testImplementation platform(libs.junit.bom)
testImplementation libs.junit.jupiter
testRuntimeOnly libs.junit.launcher
}
application {
mainClass = 'io.huangsam.photohaul.Main'
}
test {
useJUnitPlatform()
finalizedBy jacocoTestReport
}
check {
dependsOn jacocoTestCoverageVerification
}
jacocoTestReport {
reports {
html.required = true
xml.required = true
}
afterEvaluate {
classDirectories.setFrom(files(classDirectories.files.collect {
fileTree(dir: it, exclude: 'io/huangsam/**/Main.class')
}))
}
}
jacocoTestCoverageVerification {
dependsOn jacocoTestReport
violationRules {
rule {
limit {
minimum = 0.7
}
}
}
}