From 23af6978bfab57dd3a654246c82e2da7dcea0617 Mon Sep 17 00:00:00 2001 From: Josh Cummings Date: Tue, 1 Oct 2024 15:06:00 -0600 Subject: [PATCH] Update to Jacoco 0.8.12 Closes gh-923 --- .../main/groovy/io/spring/gradle/convention/JacocoPlugin.groovy | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/buildSrc/src/main/groovy/io/spring/gradle/convention/JacocoPlugin.groovy b/buildSrc/src/main/groovy/io/spring/gradle/convention/JacocoPlugin.groovy index 8f558eab..55195821 100644 --- a/buildSrc/src/main/groovy/io/spring/gradle/convention/JacocoPlugin.groovy +++ b/buildSrc/src/main/groovy/io/spring/gradle/convention/JacocoPlugin.groovy @@ -34,7 +34,7 @@ class JacocoPlugin implements Plugin { project.tasks.check.dependsOn project.tasks.jacocoTestReport project.jacoco { - toolVersion = '0.8.7' + toolVersion = '0.8.12' } } }