diff options
author | Dominik Stadler <centic@apache.org> | 2023-12-30 11:11:24 +0000 |
---|---|---|
committer | Dominik Stadler <centic@apache.org> | 2023-12-30 11:11:24 +0000 |
commit | e17f92ee3a499a1d760f78745f042cd7713d5cde (patch) | |
tree | 1fdaa2a805ea346dd3712bbd9841c1f495b0b552 | |
parent | a9ca01e3fdc0ea12b8457b253f3817208283585b (diff) | |
download | poi-e17f92ee3a499a1d760f78745f042cd7713d5cde.tar.gz poi-e17f92ee3a499a1d760f78745f042cd7713d5cde.zip |
Update JaCoCo to 0.8.11
This should make building with JDK 22 work
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1914987 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r-- | build.gradle | 2 | ||||
-rw-r--r-- | build.xml | 4 |
2 files changed, 4 insertions, 2 deletions
diff --git a/build.gradle b/build.gradle index 71f2951dbe..00a4831c34 100644 --- a/build.gradle +++ b/build.gradle @@ -389,7 +389,7 @@ subprojects { } jacoco { - toolVersion = '0.8.10' + toolVersion = '0.8.11' } jacocoTestReport { @@ -343,7 +343,7 @@ under the License. <dependency prefix="ooxml.test.opczip" artifact="com.github.rzymek:opczip:1.2.0" usage="ooxml-tests"/> <!-- coverage libs --> - <dependency prefix="jacoco" artifact="org.jacoco:jacoco:0.8.10" usage="util" packaging="zip"/> + <dependency prefix="jacoco" artifact="org.jacoco:jacoco:0.8.11" usage="util" packaging="zip"/> <dependency prefix="asm" artifact="org.ow2.asm:asm:9.5" usage="util"/> <dependency prefix="asm-commons" artifact="org.ow2.asm:asm-commons:9.5" usage="util"/> <dependency prefix="asm-tree" artifact="org.ow2.asm:asm-tree:9.5" usage="util"/> @@ -727,6 +727,7 @@ under the License. <include name="org.jacoco.*-0.8.5.*.jar"/> <include name="org.jacoco.*-0.8.6.*.jar"/> <include name="org.jacoco.*-0.8.8.*.jar"/> + <include name="org.jacoco.*-0.8.10.*.jar"/> <include name="forbiddenapis-3.1.jar"/> <include name="forbiddenapis-3.4.jar"/> </fileset> @@ -734,6 +735,7 @@ under the License. <include name="jacoco-0.8.5.zip"/> <include name="jacoco-0.8.6.zip"/> <include name="jacoco-0.8.8.zip"/> + <include name="jacoco-0.8.10.zip"/> </fileset> <fileset dir="${basedir}/lib"> <include name="jacoco-*.zip"/> |