Changeset 23473 in osm for applications


Ignore:
Timestamp:
2010-10-04T21:35:10+02:00 (14 years ago)
Author:
postfix
Message:

'some new internationalized messages'

File:
1 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/smed/build.xml

    r23465 r23473  
    7979    **********************************************************
    8080    -->
    81         <target name="dist" depends="compile">
     81        <target name="dist" depends="compile, revision">
    8282                <echo message="creating ${ant.project.name}.jar ... "/>
    8383
     
    133133        <!--
    134134    **********************************************************
     135    ** revision - extracts the current revision number for the
     136    **    file build.number and stores it in the XML property
     137    **    version.*
     138    **********************************************************
     139    -->
     140        <target name="revision">
     141
     142                <exec append="false" output="REVISION" executable="svn" failifexecutionfails="false">
     143                        <env key="LANG" value="C"/>
     144                        <arg value="info"/>
     145                        <arg value="--xml"/>
     146                        <arg value="."/>
     147                </exec>
     148                <xmlproperty file="REVISION" prefix="version" keepRoot="false" collapseAttributes="true"/>
     149                <delete file="REVISION"/>
     150        </target>
     151
     152       
     153        <!--
     154    **********************************************************
    135155    ** clean - clean up the build environment
    136156    **********************************************************
Note: See TracChangeset for help on using the changeset viewer.