forked from naver/cover-checker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
56 lines (45 loc) · 1.33 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
subprojects {
group "com.naver.nid"
version "1.5.0"
apply plugin: 'java'
apply plugin: 'jacoco'
sourceCompatibility = 1.8
targetCompatibility = 1.8
repositories {
mavenCentral()
jcenter()
maven {
name 'eclipse repository'
url 'https://repo.eclipse.org/content/groups/releases/'
}
}
dependencies {
compile('ch.qos.logback:logback-classic:1.2.3')
compile('org.slf4j:slf4j-api:1.7.25')
compileOnly('org.projectlombok:lombok:1.18.2')
annotationProcessor('org.projectlombok:lombok:1.18.16')
testCompileOnly('org.projectlombok:lombok:1.18.2')
testAnnotationProcessor('org.projectlombok:lombok:1.18.16')
testCompile(platform('org.junit:junit-bom:5.7.0'))
testCompile('org.junit.jupiter:junit-jupiter')
testCompile("org.mockito:mockito-core:3.7.7")
testCompile("org.mockito:mockito-inline:3.7.7")
testCompile("org.mockito:mockito-junit-jupiter:3.7.7")
}
test {
finalizedBy jacocoTestReport
useJUnitPlatform()
testLogging {
events "passed", "skipped", "failed"
}
}
jacocoTestReport {
dependsOn test
reports {
xml.enabled(true)
}
}
jacoco {
toolVersion = "0.8.6"
}
}