Changeset 19517 in josm for trunk/build.xml


Ignore:
Timestamp:
2026-02-12T08:35:23+01:00 (19 hours ago)
Author:
stoecker
Message:

update tools

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/build.xml

    r19516 r19517  
    3333        <!-- <condition property="isJava25"><matches string="${ant.java.version}" pattern="2[5-9]|[3-9][0-9]" /></condition> -->
    3434        <!-- <condition property="isJava26"><matches string="${ant.java.version}" pattern="2[6-9]|[3-9][0-9]" /></condition> -->
    35         <!-- Disable jacoco on Java 19+, see https://github.com/jacoco/jacoco/pull/1282 -->
    3635    </target>
    3736    <target name="init-ivy" depends="init-javaversions" description="Initialize dependency management system Apache Ivy">
     
    4645            <isset property="isJava17"/>
    4746        </condition>
     47        <condition property="versions.checkstyle" value="13.2.0">
     48            <isset property="isJava21"/>
     49        </condition>
     50        <!-- does not override previous value for Java >= 21 -->
     51        <condition property="versions.checkstyle" value="12.3.1" else="10.26.1">
     52            <isset property="isJava17"/>
     53        </condition>
    4854        <condition property="versions.equalsverifier" value="4.3.1" else="3.19.4">
    4955            <isset property="isJava17"/>
    5056        </condition>
     57       
    5158        <mkdir dir="${ivy.jar.dir}"/>
    5259        <get src="https://josm.openstreetmap.de/repository/public/org/apache/ivy/ivy/${ivy.version}/ivy-${ivy.version}.jar"
     
    119126            <isset property="clevel"/>
    120127        </condition>
     128        <!-- Disable jacoco on Java 19+, see https://github.com/jacoco/jacoco/pull/1282 -->
    121129        <condition property="coverageByDefault">
    122130            <not>
Note: See TracChangeset for help on using the changeset viewer.