Skip to content

Commit

Permalink
update to latest version of jacoco (#1785)
Browse files Browse the repository at this point in the history
* update to latest version of jacoco

* declare task dependencies to enable gradle execution optimizations

* build trigger
  • Loading branch information
rohithkrn authored Aug 11, 2022
1 parent 2b7a89a commit 358f97e
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions frontend/server/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,10 @@ dependencies {
testImplementation "org.testng:testng:${testng_version}"
}

processResources.dependsOn('generateProto')
processTestResources.dependsOn('generateTestProto')
jar.dependsOn(':archive:jar')

apply from: file("${project.rootProject.projectDir}/tools/gradle/proto.gradle")
apply from: file("${project.rootProject.projectDir}/tools/gradle/launcher.gradle")

Expand Down
2 changes: 1 addition & 1 deletion frontend/tools/gradle/check.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ tasks.withType(Checkstyle) {

apply plugin: "jacoco"
jacoco {
toolVersion = "0.8.5"
toolVersion = "0.8.8"
}
jacocoTestReport {
group = "Reporting"
Expand Down
4 changes: 2 additions & 2 deletions plugins/tools/gradle/check.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ tasks.withType(Checkstyle) {

apply plugin: "jacoco"
jacoco {
toolVersion = "0.8.5"
toolVersion = "0.8.8"
}
jacocoTestReport {
group = "Reporting"
Expand All @@ -44,4 +44,4 @@ jacocoTestReport {
}

check.dependsOn jacocoTestReport
check.dependsOn jacocoTestCoverageVerification
check.dependsOn jacocoTestCoverageVerification

0 comments on commit 358f97e

Please sign in to comment.