Ignore:
Timestamp:
2007-10-24T07:31:46+02:00 (17 years ago)
Author:
joerg
Message:

josm/plugins: reindent build Files, sort plugin build order

File:
1 edited

Legend:

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

    r3788 r5147  
    11<project name="slippymap" default="dist" basedir=".">
    22
    3         <target name="dist" depends="compile">
    4                 <!-- images -->
    5                 <copy todir="build/images">
    6                         <fileset dir="images" />
    7                 </copy>
     3  <target name="dist" depends="compile">
     4    <!-- images -->
     5    <copy todir="build/images">
     6      <fileset dir="images" />
     7    </copy>
    88
    9                 <!-- create josm-custom.jar -->
    10                 <jar destfile="slippymap.jar" basedir="build">
    11                         <manifest>
    12                 <attribute name="Plugin-Class" value="slippymap.SlippyMapPlugin" />
    13                 <attribute name="Plugin-Description" value="Displays a slippy map tile grid, and tile status info" />
    14                         </manifest>
    15                 </jar>
    16         </target>
     9    <!-- create josm-custom.jar -->
     10    <jar destfile="slippymap.jar" basedir="build">
     11      <manifest>
     12        <attribute name="Plugin-Class" value="slippymap.SlippyMapPlugin" />
     13        <attribute name="Plugin-Description" value="Displays a slippy map tile grid, and tile status info" />
     14      </manifest>
     15    </jar>
     16  </target>
    1717
    18         <target name="compile" depends="init">
    19                 <javac srcdir="slippymap" classpath="../../core/dist/josm-custom.jar" destdir="build" />
    20         </target>
     18  <target name="compile" depends="init">
     19    <javac srcdir="slippymap" classpath="../../core/dist/josm-custom.jar" destdir="build" />
     20  </target>
    2121
    22         <target name="init">
    23                 <mkdir dir="build" />
    24         </target>
     22  <target name="init">
     23    <mkdir dir="build" />
     24  </target>
    2525
    26         <target name="clean">
    27                 <delete dir="build" />
    28         </target>
     26  <target name="clean">
     27    <delete dir="build" />
     28  </target>
    2929
    3030</project>
Note: See TracChangeset for help on using the changeset viewer.