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

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

fixes for new plugin handling

File size: 4.2 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="colorscheme"/>
11 <ant antfile="build.xml" target="dist" dir="DirectUpload"/>
12 <ant antfile="build.xml" target="dist" dir="globalsat"/>
13 <ant antfile="build.xml" target="dist" dir="imagewaypoint"/>
14 <ant antfile="build.xml" target="dist" dir="lakewalker"/>
15 <ant antfile="build.xml" target="dist" dir="livegps"/>
16 <ant antfile="build.xml" target="dist" dir="measurement"/>
17 <ant antfile="build.xml" target="dist" dir="namefinder"/>
18 <ant antfile="build.xml" target="dist" dir="nearclick"/>
19 <ant antfile="build.xml" target="dist" dir="openstreetbugs"/>
20 <ant antfile="build.xml" target="dist" dir="openvisible"/>
21 <ant antfile="build.xml" target="dist" dir="osmarender"/>
22 <ant antfile="build.xml" target="dist" dir="plastic_laf"/>
23 <ant antfile="build.xml" target="dist" dir="remotecontrol"/>
24 <ant antfile="build.xml" target="dist" dir="slippymap"/>
25 <ant antfile="build.xml" target="dist" dir="slippy_map_chooser"/>
26 <ant antfile="build.xml" target="dist" dir="surveyor"/>
27 <ant antfile="build.xml" target="dist" dir="tagging-preset-tester"/>
28 <ant antfile="build.xml" target="dist" dir="tcxplugin"/>
29 <ant antfile="build.xml" target="dist" dir="usertools"/>
30 <ant antfile="build.xml" target="dist" dir="utilsplugin"/>
31 <ant antfile="build.xml" target="dist" dir="validator"/>
32 <ant antfile="build.xml" target="dist" dir="wmsplugin"/>
33 </target>
34 <target name="build_defect" depends="compile">
35 <ant antfile="build.xml" target="dist" dir="duplicateway"/>
36 <ant antfile="build.xml" target="dist" dir="grid"/>
37 <ant antfile="build.xml" target="dist" dir="navigator"/>
38 <ant antfile="build.xml" target="dist" dir="pluginmanager"/>
39 </target>
40 <target name="clean">
41 <ant antfile="build.xml" target="clean" dir="agpifoj"/>
42 <ant antfile="build.xml" target="clean" dir="colorscheme"/>
43 <ant antfile="build.xml" target="clean" dir="duplicateway"/>
44 <ant antfile="build.xml" target="clean" dir="globalsat"/>
45 <ant antfile="build.xml" target="clean" dir="grid"/>
46 <ant antfile="build.xml" target="clean" dir="imagewaypoint"/>
47 <ant antfile="build.xml" target="clean" dir="lakewalker"/>
48 <ant antfile="build.xml" target="clean" dir="livegps"/>
49 <ant antfile="build.xml" target="clean" dir="measurement"/>
50 <ant antfile="build.xml" target="clean" dir="namefinder"/>
51 <ant antfile="build.xml" target="clean" dir="navigator"/>
52 <ant antfile="build.xml" target="clean" dir="nearclick"/>
53 <ant antfile="build.xml" target="clean" dir="openstreetbugs"/>
54 <ant antfile="build.xml" target="clean" dir="openvisible"/>
55 <ant antfile="build.xml" target="clean" dir="osmarender"/>
56 <ant antfile="build.xml" target="clean" dir="plastic_laf"/>
57 <ant antfile="build.xml" target="clean" dir="pluginmanager"/>
58 <ant antfile="build.xml" target="clean" dir="remotecontrol"/>
59 <ant antfile="build.xml" target="clean" dir="slippymap"/>
60 <ant antfile="build.xml" target="clean" dir="slippy_map_chooser"/>
61 <ant antfile="build.xml" target="clean" dir="surveyor"/>
62 <ant antfile="build.xml" target="clean" dir="tagging-preset-tester"/>
63 <ant antfile="build.xml" target="clean" dir="tcxplugin"/>
64 <ant antfile="build.xml" target="clean" dir="usertools"/>
65 <ant antfile="build.xml" target="clean" dir="utilsplugin"/>
66 <ant antfile="build.xml" target="clean" dir="validator"/>
67 <ant antfile="build.xml" target="clean" dir="wmsplugin"/>
68 </target>
69 <target name="clean_install"></target>
70 <target name="install" depends="dist"></target>
71</project>
Note: See TracBrowser for help on using the repository browser.