Last change
on this file since 5017 was 3788, checked in by ulf, 17 years ago |
add remaining plugins to the global build
|
File size:
789 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="../../core/dist/josm-custom.jar" 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.