GITHUB#12655: upgrade jacoco aggregation plugin (failed with gradle 8.x), change html output property.

This commit is contained in:
Dawid Weiss 2023-10-12 20:42:17 +02:00
parent a97d7a3e35
commit 06341ffe1d
2 changed files with 3 additions and 3 deletions

View File

@ -26,7 +26,7 @@ plugins {
id "de.undercouch.download" version "5.2.0" apply false
id "net.ltgt.errorprone" version "3.1.0" apply false
id 'com.diffplug.spotless' version "6.5.2" apply false
id 'org.barfuin.gradle.jacocolog' version "3.0.0-RC2" apply false
id 'org.barfuin.gradle.jacocolog' version "3.1.0" apply false
}
apply from: file('gradle/globals.gradle')

View File

@ -33,7 +33,7 @@ if (withCoverage) {
configure(jacocoAggregatedReport) {
doLast {
logger.lifecycle("Code coverage report at: ${reports.html.destination}.\n")
logger.lifecycle("Code coverage report at: ${reports.html.entryPoint}\n")
}
}
}
@ -62,7 +62,7 @@ if (withCoverage) {
configure(jacocoTestReport) {
doLast {
logger.lifecycle("Code coverage report at: ${reports.html.destination}.\n")
logger.lifecycle("Code coverage report at: ${reports.html.entryPoint}.\n")
}
}
}