Changeset 13523 in josm
- Timestamp:
- 2018-03-13T22:19:52+01:00 (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/build.xml
r13505 r13523 60 60 <isset property="isJava10"/> 61 61 </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> 62 68 <path id="test.classpath"> 63 69 <fileset dir="${test.dir}/lib"> … … 474 480 <attribute name="testfamily"/> 475 481 <attribute name="testITsuffix" default=""/> 476 <attribute name="coverage" default=" true"/>482 <attribute name="coverage" default="${coverageByDefault}"/> 477 483 <sequential> 478 484 <echo message="Running @{testfamily}@{testITsuffix} tests with JUnit"/>
Note:
See TracChangeset
for help on using the changeset viewer.