Ignore:
Timestamp:
2020-03-17T13:32:15+01:00 (5 years ago)
Author:
donvip
Message:

build JavaFX plugins only with Java 11+, enable Jacoco coverage on Java 13/14/15

File:
1 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/build-common.xml

    r35344 r35374  
    6565    <condition property="isJava12"><matches string="${ant.java.version}" pattern="1[2-9]" /></condition>
    6666    <condition property="isJava13"><matches string="${ant.java.version}" pattern="1[3-9]" /></condition>
    67     <!-- Disable jacoco on Java 13+, see https://github.com/jacoco/jacoco/pull/738 -->
     67    <condition property="isJava16"><matches string="${ant.java.version}" pattern="1[6-9]" /></condition>
     68    <!-- Disable jacoco on Java 16+, see https://github.com/jacoco/jacoco/pull/992 -->
    6869    <condition property="coverageByDefault">
    6970        <not>
    70             <isset property="isJava13"/>
     71            <isset property="isJava16"/>
    7172        </not>
    7273    </condition>
Note: See TracChangeset for help on using the changeset viewer.