Using Jacoco snapshot.
This commit is contained in:
parent
b308a52d71
commit
09c3fef1ed
1 changed files with 8 additions and 2 deletions
|
@ -26,6 +26,7 @@ val packageName = "net.thauvin.erik.gradle.semver"
|
|||
repositories {
|
||||
mavenCentral()
|
||||
jcenter()
|
||||
maven { url = uri("https://oss.sonatype.org/content/repositories/snapshots") }
|
||||
}
|
||||
|
||||
dependencies {
|
||||
|
@ -55,10 +56,15 @@ tasks {
|
|||
}
|
||||
}
|
||||
|
||||
withType<JacocoReport> {
|
||||
jacoco {
|
||||
toolVersion = "0.8.7-SNAPSHOT"
|
||||
}
|
||||
|
||||
jacocoTestReport {
|
||||
dependsOn(test)
|
||||
reports {
|
||||
html.isEnabled = true
|
||||
xml.isEnabled = true
|
||||
html.isEnabled = true
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue