Changeset 18488 in josm for trunk/build.xml


Ignore:
Timestamp:
2022-06-13T18:53:37+02:00 (3 years ago)
Author:
Don-vip
Message:

see #21005 - java 18 support

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/build.xml

    r18348 r18488  
    104104        <condition property="isJava20"><matches string="${ant.java.version}" pattern="[2-9][0-9]" /></condition>
    105105        <condition property="isJava21"><matches string="${ant.java.version}" pattern="2[1-9]|[3-9][0-9]" /></condition>
    106         <!-- Disable jacoco on Java 18+, see https://github.com/jacoco/jacoco/pull/1132 -->
     106        <!-- Disable jacoco on Java 19+, see https://github.com/jacoco/jacoco/pull/1282 -->
    107107        <condition property="coverageByDefault">
    108108            <not>
    109                 <isset property="isJava18"/>
     109                <isset property="isJava19"/>
    110110            </not>
    111111        </condition>
Note: See TracChangeset for help on using the changeset viewer.