Skip to content

Commit

Permalink
JaCoCo 0.8.9 (#5959)
Browse files Browse the repository at this point in the history
* JaCoCo 0.8.9

https://github.com/jacoco/jacoco/releases/tag/v0.8.9

* Add open for java.lang when running detekt-formatting test task

Quick fix for jacoco/jacoco@b865890
  • Loading branch information
3flex committed Apr 3, 2023
1 parent 221d701 commit d8d6f3e
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
6 changes: 6 additions & 0 deletions detekt-formatting/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -45,3 +45,9 @@ tasks.jar {
extraDepsToPackage.map { zipTree(it) },
)
}

tasks.test {
if (javaVersion.isJava9Compatible) {
jvmArgs("--add-opens=java.base/java.lang=ALL-UNNAMED")
}
}
2 changes: 1 addition & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[versions]
dokka = "1.8.10"
jacoco = "0.8.8"
jacoco = "0.8.9"
kotlin = "1.8.10"
ktlint = "0.48.2"
junit = "5.9.2"
Expand Down

0 comments on commit d8d6f3e

Please sign in to comment.