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

Last change on this file since 18343 was 18078, checked in by bilbo, 15 years ago

Add multipoly plugin

File size: 5.5 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="Create_grid_of_ways"/>
13 <ant antfile="build.xml" target="dist" dir="czechaddress"/>
14 <ant antfile="build.xml" target="dist" dir="dataimport"/>
15 <ant antfile="build.xml" target="dist" dir="DirectUpload"/>
16 <ant antfile="build.xml" target="dist" dir="editgpx"/>
17 <ant antfile="build.xml" target="dist" dir="globalsat"/>
18 <ant antfile="build.xml" target="dist" dir="graphview"/>
19 <ant antfile="build.xml" target="dist" dir="imagewaypoint"/>
20 <ant antfile="build.xml" target="dist" dir="lakewalker"/>
21 <ant antfile="build.xml" target="dist" dir="livegps"/>
22 <ant antfile="build.xml" target="dist" dir="measurement"/>
23 <ant antfile="build.xml" target="dist" dir="michigan_left"/>
24 <ant antfile="build.xml" target="dist" dir="multipoly"/>
25 <ant antfile="build.xml" target="dist" dir="nearclick"/>
26 <ant antfile="build.xml" target="dist" dir="openlayers"/>
27 <ant antfile="build.xml" target="dist" dir="openstreetbugs"/>
28 <ant antfile="build.xml" target="dist" dir="openvisible"/>
29 <ant antfile="build.xml" target="dist" dir="osmarender"/>
30 <ant antfile="build.xml" target="dist" dir="piclayer"/>
31 <ant antfile="build.xml" target="dist" dir="plastic_laf"/>
32 <ant antfile="build.xml" target="dist" dir="remotecontrol"/>
33 <ant antfile="build.xml" target="dist" dir="routes"/>
34 <ant antfile="build.xml" target="dist" dir="routing"/>
35 <ant antfile="build.xml" target="dist" dir="slippymap"/>
36 <ant antfile="build.xml" target="dist" dir="surveyor"/>
37 <ant antfile="build.xml" target="dist" dir="tagging-preset-tester"/>
38 <ant antfile="build.xml" target="dist" dir="tageditor"/>
39 <ant antfile="build.xml" target="dist" dir="terracer"/>
40 <ant antfile="build.xml" target="dist" dir="utilsplugin"/>
41 <ant antfile="build.xml" target="dist" dir="validator"/>
42 <ant antfile="build.xml" target="dist" dir="walkingpapers"/>
43 <ant antfile="build.xml" target="dist" dir="waydownloader"/>
44 <ant antfile="build.xml" target="dist" dir="wmsplugin"/>
45 </target>
46 <target name="build_defect" depends="compile">
47 <ant antfile="build.xml" target="dist" dir="duplicateway"/>
48 <ant antfile="build.xml" target="dist" dir="grid"/>
49 </target>
50 <target name="clean">
51 <ant antfile="build.xml" target="clean" dir="agpifoj"/>
52 <ant antfile="build.xml" target="clean" dir="cadastre-fr"/>
53 <ant antfile="build.xml" target="clean" dir="colorscheme"/>
54 <ant antfile="build.xml" target="clean" dir="Create_grid_of_ways"/>
55 <ant antfile="build.xml" target="clean" dir="czechaddress"/>
56 <ant antfile="build.xml" target="clean" dir="dataimport"/>
57 <ant antfile="build.xml" target="clean" dir="DirectUpload"/>
58 <ant antfile="build.xml" target="clean" dir="duplicateway"/>
59 <ant antfile="build.xml" target="clean" dir="editgpx"/>
60 <ant antfile="build.xml" target="clean" dir="globalsat"/>
61 <ant antfile="build.xml" target="clean" dir="graphview"/>
62 <ant antfile="build.xml" target="clean" dir="grid"/>
63 <ant antfile="build.xml" target="clean" dir="imagewaypoint"/>
64 <ant antfile="build.xml" target="clean" dir="lakewalker"/>
65 <ant antfile="build.xml" target="clean" dir="livegps"/>
66 <ant antfile="build.xml" target="clean" dir="measurement"/>
67 <ant antfile="build.xml" target="clean" dir="michigan_left"/>
68 <ant antfile="build.xml" target="clean" dir="multipoly"/>
69 <ant antfile="build.xml" target="clean" dir="nearclick"/>
70 <ant antfile="build.xml" target="clean" dir="openlayers"/>
71 <ant antfile="build.xml" target="clean" dir="openstreetbugs"/>
72 <ant antfile="build.xml" target="clean" dir="openvisible"/>
73 <ant antfile="build.xml" target="clean" dir="osmarender"/>
74 <ant antfile="build.xml" target="clean" dir="piclayer"/>
75 <ant antfile="build.xml" target="clean" dir="plastic_laf"/>
76 <ant antfile="build.xml" target="clean" dir="remotecontrol"/>
77 <ant antfile="build.xml" target="clean" dir="routes"/>
78 <ant antfile="build.xml" target="clean" dir="routing"/>
79 <ant antfile="build.xml" target="clean" dir="slippymap"/>
80 <ant antfile="build.xml" target="clean" dir="surveyor"/>
81 <ant antfile="build.xml" target="clean" dir="tagging-preset-tester"/>
82 <ant antfile="build.xml" target="clean" dir="tageditor"/>
83 <ant antfile="build.xml" target="clean" dir="terracer"/>
84 <ant antfile="build.xml" target="clean" dir="utilsplugin"/>
85 <ant antfile="build.xml" target="clean" dir="validator"/>
86 <ant antfile="build.xml" target="clean" dir="walkingpapers"/>
87 <ant antfile="build.xml" target="clean" dir="waydownloader"/>
88 <ant antfile="build.xml" target="clean" dir="wmsplugin"/>
89 </target>
90 <target name="clean_install"></target>
91 <target name="install" depends="dist"></target>
92</project>
Note: See TracBrowser for help on using the repository browser.