Changeset 18488 in josm


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

see #21005 - java 18 support

Location:
trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/.github/workflows/ant-test.yml

    r18430 r18488  
    2222      matrix:
    2323        # test against latest update of each major Java version, as well as specific updates of LTS versions:
    24         java: [8, 11, 17, 18-ea]
     24        java: [8, 11, 17, 18, 19-ea]
    2525        os: [ubuntu-latest, macos-latest, windows-latest]
    2626    name: Java ${{ matrix.java }} on ${{ matrix.os }}
  • trunk/.github/workflows/ant.yml

    r18429 r18488  
    44  # ANT_HOME is also our ant version
    55  ANT_HOME: 'apache-ant-1.10.12'
    6   JAVAFX_VERSION: '17.0.2'
     6  JAVAFX_VERSION: '17.0.3'
    77on:
    88  push:
     
    7272      matrix:
    7373        # test against latest update of each major Java version, as well as specific updates of LTS versions:
    74         java: [8, 11, 17, 18-ea]
     74        java: [8, 11, 17, 18, 19-ea]
    7575        os: [ubuntu-latest, macos-latest, windows-latest]
    7676    name: Java ${{ matrix.java }} on ${{ matrix.os }}
  • 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.