Changeset 17895 in josm for trunk/build.xml


Ignore:
Timestamp:
2021-05-17T02:40:50+02:00 (3 years ago)
Author:
Don-vip
Message:

see #20522 - disable ProGuard on Java 17+, see https://github.com/Guardsquare/proguard/issues/132

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/build.xml

    r17884 r17895  
    513513        </jacoco:report>
    514514    </target>
    515     <target name="dist-optimized" depends="dist" description="Build an optimized JOSM distribution file">
     515    <!-- ProGuard does not woth with Java 17 yet: https://github.com/Guardsquare/proguard/issues/132 -->
     516    <target name="dist-optimized" depends="dist" unless="isJava17" description="Build an optimized JOSM distribution file">
    516517        <ivy:cachepath log="download-only" file="${tools.ivy}" pathid="proguard.classpath" conf="proguard"/>
    517518        <taskdef resource="proguard/ant/task.properties" classpathref="proguard.classpath"/>
Note: See TracChangeset for help on using the changeset viewer.