source: osm/applications/editors/josm/plugins/slippymap/build.xml@ 3769

Last change on this file since 3769 was 2130, checked in by frederik, 18 years ago

initial check-in. very "alpha" code, just about works but lots of things
hardcoded or not coded at all.

File size: 773 bytes
Line 
1<project name="slippymap" default="dist" basedir=".">
2
3 <target name="dist" depends="compile">
4 <!-- images -->
5 <copy todir="build/images">
6 <fileset dir="images" />
7 </copy>
8
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
18 <target name="compile" depends="init">
19 <javac srcdir="slippymap" classpath="../../josm/bin/" destdir="build" />
20 </target>
21
22 <target name="init">
23 <mkdir dir="build" />
24 </target>
25
26 <target name="clean">
27 <delete dir="build" />
28 </target>
29
30</project>
Note: See TracBrowser for help on using the repository browser.