Update dependency jacoco to v0.8.10 (#9101)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Trask Stalnaker <trask.stalnaker@gmail.com>
This commit is contained in:
parent
23213fdf30
commit
211069774e
|
@ -3,7 +3,7 @@ plugins {
|
||||||
}
|
}
|
||||||
|
|
||||||
jacoco {
|
jacoco {
|
||||||
toolVersion = "0.8.8"
|
toolVersion = "0.8.10"
|
||||||
}
|
}
|
||||||
|
|
||||||
tasks {
|
tasks {
|
||||||
|
|
|
@ -39,6 +39,7 @@ tasks {
|
||||||
|
|
||||||
withType<Test>().configureEach {
|
withType<Test>().configureEach {
|
||||||
// required on jdk17
|
// required on jdk17
|
||||||
|
jvmArgs("--add-opens=java.base/java.lang=ALL-UNNAMED")
|
||||||
jvmArgs("--add-opens=java.base/java.util=ALL-UNNAMED")
|
jvmArgs("--add-opens=java.base/java.util=ALL-UNNAMED")
|
||||||
jvmArgs("-XX:+IgnoreUnrecognizedVMOptions")
|
jvmArgs("-XX:+IgnoreUnrecognizedVMOptions")
|
||||||
}
|
}
|
||||||
|
|
|
@ -32,6 +32,7 @@ dependencies {
|
||||||
|
|
||||||
tasks.withType<Test>().configureEach {
|
tasks.withType<Test>().configureEach {
|
||||||
// required on jdk17
|
// required on jdk17
|
||||||
|
jvmArgs("--add-opens=java.base/java.lang=ALL-UNNAMED")
|
||||||
jvmArgs("--add-opens=java.base/java.util=ALL-UNNAMED")
|
jvmArgs("--add-opens=java.base/java.util=ALL-UNNAMED")
|
||||||
jvmArgs("-XX:+IgnoreUnrecognizedVMOptions")
|
jvmArgs("-XX:+IgnoreUnrecognizedVMOptions")
|
||||||
}
|
}
|
||||||
|
|
|
@ -40,6 +40,7 @@ dependencies {
|
||||||
|
|
||||||
tasks.withType<Test>().configureEach {
|
tasks.withType<Test>().configureEach {
|
||||||
// required on jdk17
|
// required on jdk17
|
||||||
|
jvmArgs("--add-opens=java.base/java.lang=ALL-UNNAMED")
|
||||||
jvmArgs("--add-opens=java.base/java.util=ALL-UNNAMED")
|
jvmArgs("--add-opens=java.base/java.util=ALL-UNNAMED")
|
||||||
jvmArgs("-XX:+IgnoreUnrecognizedVMOptions")
|
jvmArgs("-XX:+IgnoreUnrecognizedVMOptions")
|
||||||
}
|
}
|
||||||
|
|
|
@ -14,3 +14,9 @@ dependencies {
|
||||||
testImplementation("com.sun.activation:jakarta.activation:1.2.2")
|
testImplementation("com.sun.activation:jakarta.activation:1.2.2")
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
tasks.withType<Test>().configureEach {
|
||||||
|
// required on jdk17
|
||||||
|
jvmArgs("--add-opens=java.base/java.lang=ALL-UNNAMED")
|
||||||
|
jvmArgs("-XX:+IgnoreUnrecognizedVMOptions")
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in New Issue