Using Jacoco snapshot.

This commit is contained in:
Erik C. Thauvin 2021-04-28 20:12:04 -07:00
parent b308a52d71
commit 09c3fef1ed

View file

@ -26,6 +26,7 @@ val packageName = "net.thauvin.erik.gradle.semver"
repositories { repositories {
mavenCentral() mavenCentral()
jcenter() jcenter()
maven { url = uri("https://oss.sonatype.org/content/repositories/snapshots") }
} }
dependencies { dependencies {
@ -55,10 +56,15 @@ tasks {
} }
} }
withType<JacocoReport> { jacoco {
toolVersion = "0.8.7-SNAPSHOT"
}
jacocoTestReport {
dependsOn(test)
reports { reports {
html.isEnabled = true
xml.isEnabled = true xml.isEnabled = true
html.isEnabled = true
} }
} }