Changeset 16156 in josm for trunk/build.xml


Ignore:
Timestamp:
2020-03-17T12:55:38+01:00 (4 years ago)
Author:
Don-vip
Message:

see #17516 - see #17827 - see #18755 - Enable Jacoco coverage on Java 13/14/15

upgraded jacocoant to jacoco-0.8.6-20200313.013328-40 snapshot

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/build.xml

    r16150 r16156  
    8585        <condition property="isJava12"><matches string="${ant.java.version}" pattern="1[2-9]" /></condition>
    8686        <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 -->
    8889        <condition property="coverageByDefault">
    8990            <not>
    90                 <isset property="isJava13"/>
     91                <isset property="isJava16"/>
    9192            </not>
    9293        </condition>
Note: See TracChangeset for help on using the changeset viewer.