Changeset 16156 in josm
- Timestamp:
- 2020-03-17T12:55:38+01:00 (5 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/build.xml
r16150 r16156 85 85 <condition property="isJava12"><matches string="${ant.java.version}" pattern="1[2-9]" /></condition> 86 86 <condition property="isJava13"><matches string="${ant.java.version}" pattern="1[3-9]" /></condition> 87 <!-- Disable jacoco on Java 13+, see https://github.com/jacoco/jacoco/pull/738 --> 87 <condition property="isJava16"><matches string="${ant.java.version}" pattern="1[6-9]" /></condition> 88 <!-- Disable jacoco on Java 16+, see https://github.com/jacoco/jacoco/pull/992 --> 88 89 <condition property="coverageByDefault"> 89 90 <not> 90 <isset property="isJava1 3"/>91 <isset property="isJava16"/> 91 92 </not> 92 93 </condition>
Note:
See TracChangeset
for help on using the changeset viewer.