Changeset 5147 in osm for applications/editors/josm/plugins/slippymap/build.xml
- Timestamp:
- 2007-10-24T07:31:46+02:00 (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/slippymap/build.xml
r3788 r5147 1 1 <project name="slippymap" default="dist" basedir="."> 2 2 3 4 5 6 7 3 <target name="dist" depends="compile"> 4 <!-- images --> 5 <copy todir="build/images"> 6 <fileset dir="images" /> 7 </copy> 8 8 9 10 11 12 13 14 15 16 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> 17 17 18 19 20 18 <target name="compile" depends="init"> 19 <javac srcdir="slippymap" classpath="../../core/dist/josm-custom.jar" destdir="build" /> 20 </target> 21 21 22 23 24 22 <target name="init"> 23 <mkdir dir="build" /> 24 </target> 25 25 26 27 28 26 <target name="clean"> 27 <delete dir="build" /> 28 </target> 29 29 30 30 </project>
Note:
See TracChangeset
for help on using the changeset viewer.