Changeset 34692 in osm for applications/editors/josm/i18n


Ignore:
Timestamp:
2018-10-22T23:57:55+02:00 (6 years ago)
Author:
simon04
Message:

JOSM/i18n: visualize Ant task dependencies

Location:
applications/editors/josm/i18n
Files:
1 added
1 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/i18n/build.xml

    r34689 r34692  
    1717    <property name="gettexttasks.jar" value="lib/gettext-ant-tasks-0.9.7.jar"/>
    1818    <property name="antcontrib.jar" value="lib/ant-contrib-1.0b3.jar"/>
     19    <property name="grand.jar" value="lib/grand-1.9.5.jar"/>
    1920    <target name="init" description="Loads the Ant gettext and contrib tasks">
    2021        <taskdef name="gettext-extract" classname="org.xnap.commons.ant.gettext.GettextExtractKeysTask" classpath="${gettexttasks.jar}"/>
     
    184185        <delete dir="${i18n.build.dir}"/>
    185186        <delete file="po/josm.pot"/>
     187        <delete file="build.dot"/>
     188        <delete file="build.png"/>
    186189        <delete>
    187190            <fileset dir="po" includes="*.*~" defaultexcludes="false"/>
     
    211214        <antcall target="buildcore"/>
    212215    </target>
     216    <target name="ant-dependencies">
     217        <typedef resource="net/ggtools/grand/antlib.xml" classpath="${grand.jar}"/>
     218        <grand output="build.dot" outputconfigprefix="grand"/>
     219        <exec executable="dot">
     220            <arg line="-Tpng -o build.png build.dot"/>
     221        </exec>
     222    </target>
    213223</project>
Note: See TracChangeset for help on using the changeset viewer.