Browse Source

Update JaCoCo to 0.7.8 to allow to run it when using JDK 9

git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1776623 13f79535-47bb-0310-9956-ffa450edef68
pull/44/head
Dominik Stadler 7 years ago
parent
commit
de83b46caa
2 changed files with 5 additions and 3 deletions
  1. 1
    1
      build.gradle
  2. 4
    2
      build.xml

+ 1
- 1
build.gradle View File

@@ -121,7 +121,7 @@ subprojects {
}

jacoco {
toolVersion = '0.7.7.201606060606'
toolVersion = '0.7.8'
}
// ensure the build-dir exists

+ 4
- 2
build.xml View File

@@ -195,8 +195,8 @@ under the License.
value="${repository.m2}/maven2/org/apache/xmlbeans/xmlbeans/2.6.0/xmlbeans-2.6.0.jar"/>

<!-- coverage libs -->
<property name="jacoco.zip" location="${main.lib}/jacoco-0.7.7.201606060606.zip"/>
<property name="jacoco.url" value="${repository.m2}/maven2/org/jacoco/jacoco/0.7.7.201606060606/jacoco-0.7.7.201606060606.zip"/>
<property name="jacoco.zip" location="${main.lib}/jacoco-0.7.8.zip"/>
<property name="jacoco.url" value="${repository.m2}/maven2/org/jacoco/jacoco/0.7.8/jacoco-0.7.8.zip"/>
<property name="asm.jar" location="${main.lib}/asm-all-5.0.3.jar"/>
<property name="asm.url" value="${repository.m2}/maven2/org/ow2/asm/asm-all/5.0.3/asm-all-5.0.3.jar"/>

@@ -548,6 +548,7 @@ under the License.
<include name="jacoco-0.7.3*"/>
<include name="jacoco-0.7.4*"/>
<include name="jacoco-0.7.6*"/>
<include name="jacoco-0.7.7*"/>
<include name="log4j-1.2.13*"/>
<include name="org.jacoco.*-0.6.*"/>
<include name="org.jacoco.*-0.7.1*"/>
@@ -555,6 +556,7 @@ under the License.
<include name="org.jacoco.*-0.7.3*"/>
<include name="org.jacoco.*-0.7.4*"/>
<include name="org.jacoco.*-0.7.6*"/>
<include name="org.jacoco.*-0.7.7*"/>
<include name="dom4j*"/>
<include name="apache-rat-0.10*"/>
<include name="xercesImpl-*.jar"/>

Loading…
Cancel
Save