Skip to content

Commit

Permalink
feat(jacoco): upgrade jacoco from 0.8.8 to 0.8.10
Browse files Browse the repository at this point in the history
  • Loading branch information
halibobo1205 committed Oct 31, 2024
1 parent 333d25c commit 45e7318
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 12 deletions.
4 changes: 3 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,9 @@ subprojects {
targetCompatibility = JavaVersion.VERSION_1_8

[compileJava, compileTestJava]*.options*.encoding = 'UTF-8'

jacoco {
toolVersion = "0.8.10"
}
buildscript {
repositories {
mavenCentral()
Expand Down
4 changes: 0 additions & 4 deletions chainbase/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ description = "chainbase – a decentralized database for blockchain."

// Dependency versions
// ---------------------------------------
def jacocoVersion = "0.8.0"
def jansiVersion = "1.16"
// --------------------------------------

Expand Down Expand Up @@ -41,9 +40,6 @@ test {
}
}

jacoco {
toolVersion = jacocoVersion // See http://www.eclemma.org/jacoco/.
}

jacocoTestReport {
reports {
Expand Down
5 changes: 1 addition & 4 deletions framework/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,6 @@ def versions = [
checkstyle: '8.7',
]

jacoco {
toolVersion = "0.8.8"
}


configurations {
Expand Down Expand Up @@ -157,7 +154,7 @@ jacocoTestReport {
*/

offlinsCoverage {
jacocoVersion = '0.8.8' // Optional. By default `0.8.8`
jacocoVersion = jacoco.toolVersion

reports {
html.enabled.set true // Optional. By default `true`
Expand Down
3 changes: 0 additions & 3 deletions plugins/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,6 @@ plugins {
apply plugin: 'application'
apply plugin: 'checkstyle'

jacoco {
toolVersion = "0.8.4"
}
def versions = [
checkstyle: '8.7',
]
Expand Down

0 comments on commit 45e7318

Please sign in to comment.