Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(jdk17): keep jacoco 0.8.8 for all projects #38

Open
wants to merge 1 commit into
base: arch/arm64
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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.8"
}
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