Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Trask Stalnaker <trask.stalnaker@gmail.com>
@@ -3,7 +3,7 @@ plugins {
}
jacoco {
- toolVersion = "0.8.8"
+ toolVersion = "0.8.10"
tasks {
@@ -39,6 +39,7 @@ tasks {
withType<Test>().configureEach {
// required on jdk17
+ jvmArgs("--add-opens=java.base/java.lang=ALL-UNNAMED")
jvmArgs("--add-opens=java.base/java.util=ALL-UNNAMED")
jvmArgs("-XX:+IgnoreUnrecognizedVMOptions")
@@ -32,6 +32,7 @@ dependencies {
tasks.withType<Test>().configureEach {
@@ -40,6 +40,7 @@ dependencies {
@@ -14,3 +14,9 @@ dependencies {
testImplementation("com.sun.activation:jakarta.activation:1.2.2")
+
+tasks.withType<Test>().configureEach {
+ // required on jdk17
+ jvmArgs("-XX:+IgnoreUnrecognizedVMOptions")
+}