Ignore:
Timestamp:
2012-02-11T15:31:41+01:00 (12 years ago)
Author:
malcolmh
Message:

save

File:
1 edited

Legend:

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

    r27479 r27749  
    1212**
    1313**    > ant  dist
    14 **
    15 ** To install the generated plugin locally (in you default plugin directory) run
    16 **
    17 **    > ant  install
    18 **
    19 ** The generated plugin jar is not automatically available in JOSMs plugin configuration
    20 ** dialog. You have to check it in first.
    21 **
    22 ** Use the ant target 'publish' to check in the plugin and make it available to other
    23 ** JOSM users:
    24 **    set the properties commit.message and plugin.main.version
    25 ** and run
    26 **    > ant  publish
    27 **
    2814**
    2915-->
     
    7561    **********************************************************
    7662    -->
    77     <target name="dist" depends="compile,revision">
     63    <target name="dist" depends="compile">
    7864        <echo message="creating ${ant.project.name}.jar ... "/>
    7965        <copy todir="${plugin.build.dir}/images">
     
    120106    <!--
    121107    **********************************************************
    122     ** revision - extracts the current revision number for the
    123     **    file build.number and stores it in the XML property
    124     **    version.*
    125     **********************************************************
    126     -->
    127     <target name="revision">
    128         <exec append="false" output="REVISION" executable="svn" failifexecutionfails="false">
    129             <env key="LANG" value="C"/>
    130             <arg value="info"/>
    131             <arg value="--xml"/>
    132             <arg value="."/>
    133         </exec>
    134         <xmlproperty file="REVISION" prefix="version" keepRoot="false" collapseAttributes="true"/>
    135         <delete file="REVISION"/>
    136     </target>
    137     <!--
    138     **********************************************************
    139108    ** clean - clean up the build environment
    140109    **********************************************************
Note: See TracChangeset for help on using the changeset viewer.