Changeset 14021 in josm for trunk/build.xml


Ignore:
Timestamp:
2018-07-08T20:57:55+02:00 (8 years ago)
Author:
Don-vip
Message:

more changes required by Groovy 2.5.0

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/build.xml

    r14019 r14021  
    791791        <sequential>
    792792            <echo message="Generating Taginfo for type @{type} to @{output}"/>
    793             <groovy src="${taginfoextract}" classpath="${dist.jar}:${spotbugs.dir}/spotbugs-annotations.jar">
     793            <groovy src="${taginfoextract}" classpath="${dist.jar};${toString:groovy.classpath};${spotbugs.dir}/spotbugs-annotations.jar">
    794794                <arg value="-t"/>
    795795                <arg value="@{type}"/>
     
    805805
    806806    <target name="taginfo" depends="dist">
    807         <taskdef name="groovy" classname="org.codehaus.groovy.ant.Groovy" classpath="${toString:groovy.classpath};${tools.dir}/commons-cli-1.3.1.jar"/>
     807        <!-- http://docs.groovy-lang.org/2.5.0/html/documentation/#_the_groovy_ant_task -->
     808        <taskdef name="groovy" classname="org.codehaus.groovy.ant.Groovy" classpathref="groovy.classpath"/>
    808809        <property name="taginfoextract" value="scripts/TagInfoExtract.groovy"/>
    809810        <property name="imgurlprefix" value="http://josm.openstreetmap.de/download/taginfo/taginfo-img"/>
     
    814815
    815816    <target name="imageryindex" depends="init-properties">
    816         <taskdef name="groovy" classname="org.codehaus.groovy.ant.Groovy" classpath="${toString:groovy.classpath};${tools.dir}/commons-cli-1.3.1.jar"/>
     817        <taskdef name="groovy" classname="org.codehaus.groovy.ant.Groovy" classpathref="groovy.classpath"/>
    817818        <echo message="Checking editor imagery difference"/>
    818819        <groovy src="scripts/SyncEditorLayerIndex.groovy" classpath="${dist.jar}">
Note: See TracChangeset for help on using the changeset viewer.