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

Last change on this file since 13585 was 13585, checked in by stoecker, 15 years ago

some cleanup

File size: 4.4 KB
Line 
1<project name="josm-plugins" default="build" basedir=".">
2 <target name="compile_josm">
3 <ant dir="../core" target="dist" />
4 </target>
5 <target name="compile" depends="compile_josm"></target>
6 <target name="build" depends="dist"></target>
7 <target name="dist" depends="compile">
8 <mkdir dir="../dist"/>
9 <ant antfile="build.xml" target="dist" dir="agpifoj"/>
10 <ant antfile="build.xml" target="dist" dir="cadastre-fr"/>
11 <ant antfile="build.xml" target="dist" dir="colorscheme"/>
12 <ant antfile="build.xml" target="dist" dir="DirectUpload"/>
13 <ant antfile="build.xml" target="dist" dir="globalsat"/>
14 <ant antfile="build.xml" target="dist" dir="imagewaypoint"/>
15 <ant antfile="build.xml" target="dist" dir="lakewalker"/>
16 <ant antfile="build.xml" target="dist" dir="livegps"/>
17 <ant antfile="build.xml" target="dist" dir="measurement"/>
18 <ant antfile="build.xml" target="dist" dir="nearclick"/>
19 <ant antfile="build.xml" target="dist" dir="openlayers"/>
20 <ant antfile="build.xml" target="dist" dir="openstreetbugs"/>
21 <ant antfile="build.xml" target="dist" dir="openvisible"/>
22 <ant antfile="build.xml" target="dist" dir="osmarender"/>
23 <ant antfile="build.xml" target="dist" dir="plastic_laf"/>
24 <ant antfile="build.xml" target="dist" dir="remotecontrol"/>
25 <ant antfile="build.xml" target="dist" dir="slippymap"/>
26 <ant antfile="build.xml" target="dist" dir="slippy_map_chooser"/>
27 <ant antfile="build.xml" target="dist" dir="surveyor"/>
28 <ant antfile="build.xml" target="dist" dir="tagging-preset-tester"/>
29 <ant antfile="build.xml" target="dist" dir="tcxplugin"/>
30 <ant antfile="build.xml" target="dist" dir="terracer"/>
31 <ant antfile="build.xml" target="dist" dir="usertools"/>
32 <ant antfile="build.xml" target="dist" dir="utilsplugin"/>
33 <ant antfile="build.xml" target="dist" dir="validator"/>
34 <ant antfile="build.xml" target="dist" dir="wmsplugin"/>
35 </target>
36 <target name="build_defect" depends="compile">
37 <ant antfile="build.xml" target="dist" dir="duplicateway"/>
38 <ant antfile="build.xml" target="dist" dir="grid"/>
39 <ant antfile="build.xml" target="dist" dir="navigator"/>
40 <ant antfile="build.xml" target="dist" dir="pluginmanager"/>
41 </target>
42 <target name="clean">
43 <ant antfile="build.xml" target="clean" dir="agpifoj"/>
44 <ant antfile="build.xml" target="clean" dir="cadastre-fr"/>
45 <ant antfile="build.xml" target="clean" dir="colorscheme"/>
46 <ant antfile="build.xml" target="clean" dir="duplicateway"/>
47 <ant antfile="build.xml" target="clean" dir="globalsat"/>
48 <ant antfile="build.xml" target="clean" dir="grid"/>
49 <ant antfile="build.xml" target="clean" dir="imagewaypoint"/>
50 <ant antfile="build.xml" target="clean" dir="lakewalker"/>
51 <ant antfile="build.xml" target="clean" dir="livegps"/>
52 <ant antfile="build.xml" target="clean" dir="measurement"/>
53 <ant antfile="build.xml" target="clean" dir="navigator"/>
54 <ant antfile="build.xml" target="clean" dir="nearclick"/>
55 <ant antfile="build.xml" target="clean" dir="openlayers"/>
56 <ant antfile="build.xml" target="clean" dir="openstreetbugs"/>
57 <ant antfile="build.xml" target="clean" dir="openvisible"/>
58 <ant antfile="build.xml" target="clean" dir="osmarender"/>
59 <ant antfile="build.xml" target="clean" dir="plastic_laf"/>
60 <ant antfile="build.xml" target="clean" dir="pluginmanager"/>
61 <ant antfile="build.xml" target="clean" dir="remotecontrol"/>
62 <ant antfile="build.xml" target="clean" dir="slippymap"/>
63 <ant antfile="build.xml" target="clean" dir="slippy_map_chooser"/>
64 <ant antfile="build.xml" target="clean" dir="surveyor"/>
65 <ant antfile="build.xml" target="clean" dir="tagging-preset-tester"/>
66 <ant antfile="build.xml" target="clean" dir="tcxplugin"/>
67 <ant antfile="build.xml" target="clean" dir="terracer"/>
68 <ant antfile="build.xml" target="clean" dir="usertools"/>
69 <ant antfile="build.xml" target="clean" dir="utilsplugin"/>
70 <ant antfile="build.xml" target="clean" dir="validator"/>
71 <ant antfile="build.xml" target="clean" dir="wmsplugin"/>
72 </target>
73 <target name="clean_install"></target>
74 <target name="install" depends="dist"></target>
75</project>
Note: See TracBrowser for help on using the repository browser.