Changeset 13523 in josm


Ignore:
Timestamp:
2018-03-13T22:19:52+01:00 (6 years ago)
Author:
Don-vip
Message:

see #16047 - disable jacoco on Java 11+, see https://github.com/jacoco/jacoco/issues/629

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/build.xml

    r13505 r13523  
    6060            <isset property="isJava10"/>
    6161        </condition>
     62        <!-- Disable jacoco on Java 11+, see https://github.com/jacoco/jacoco/issues/629 -->
     63        <condition property="coverageByDefault">
     64            <not>
     65                <isset property="isJava11"/>
     66            </not>
     67        </condition>
    6268        <path id="test.classpath">
    6369            <fileset dir="${test.dir}/lib">
     
    474480        <attribute name="testfamily"/>
    475481        <attribute name="testITsuffix" default=""/>
    476         <attribute name="coverage" default="true"/>
     482        <attribute name="coverage" default="${coverageByDefault}"/>
    477483        <sequential>
    478484            <echo message="Running @{testfamily}@{testITsuffix} tests with JUnit"/>
Note: See TracChangeset for help on using the changeset viewer.