Skip to content
This repository was archived by the owner on Jan 20, 2023. It is now read-only.

Commit a31e59e

Browse files
committed
jacoco周りを追加
1 parent 307cae9 commit a31e59e

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

build.gradle.kts

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ plugins {
33
id("java")
44
id("org.jetbrains.kotlin.jvm") version "1.3.72"
55
id("org.jlleitschuh.gradle.ktlint") version "9.2.1"
6+
id("jacoco")
67
}
78

89
group = "com.mapk"
@@ -73,4 +74,12 @@ tasks {
7374
test {
7475
useJUnitPlatform()
7576
}
77+
78+
jacocoTestReport {
79+
reports {
80+
xml.isEnabled = true
81+
csv.isEnabled = false
82+
html.isEnabled = true
83+
}
84+
}
7685
}

0 commit comments

Comments
 (0)