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

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

build fixes

File size: 6.7 KB
Line 
1<project name="josm-plugins" default="build" basedir=".">
2 <target name="compile_josm" unless="skip-josm">
3 <echo message="test"/>
4 <ant dir="../core" target="dist" />
5 </target>
6 <target name="compile" depends="compile_josm"></target>
7 <target name="build" depends="dist"></target>
8 <target name="dist" depends="compile">
9 <mkdir dir="../dist"/>
10 <ant antfile="build.xml" target="dist" dir="addrinterpolation"/>
11 <ant antfile="build.xml" target="dist" dir="buildings_tools"/>
12 <ant antfile="build.xml" target="dist" dir="cadastre-fr"/>
13 <ant antfile="build.xml" target="dist" dir="colorscheme"/>
14 <ant antfile="build.xml" target="dist" dir="Create_grid_of_ways"/>
15 <ant antfile="build.xml" target="dist" dir="czechaddress"/>
16 <ant antfile="build.xml" target="dist" dir="dataimport"/>
17 <ant antfile="build.xml" target="dist" dir="DirectUpload"/>
18 <ant antfile="build.xml" target="dist" dir="editgpx"/>
19 <ant antfile="build.xml" target="dist" dir="globalsat"/>
20 <ant antfile="build.xml" target="dist" dir="graphview"/>
21 <ant antfile="build.xml" target="dist" dir="imagewaypoint"/>
22 <ant antfile="build.xml" target="dist" dir="lakewalker"/>
23 <ant antfile="build.xml" target="dist" dir="livegps"/>
24 <ant antfile="build.xml" target="dist" dir="measurement"/>
25 <ant antfile="build.xml" target="dist" dir="michigan_left"/>
26 <ant antfile="build.xml" target="dist" dir="multipoly"/>
27 <ant antfile="build.xml" target="dist" dir="multipoly-convert"/>
28 <ant antfile="build.xml" target="dist" dir="nearclick"/>
29 <ant antfile="build.xml" target="dist" dir="openlayers"/>
30 <ant antfile="build.xml" target="dist" dir="openstreetbugs"/>
31 <ant antfile="build.xml" target="dist" dir="openvisible"/>
32 <ant antfile="build.xml" target="dist" dir="osmarender"/>
33 <ant antfile="build.xml" target="dist" dir="photo_geotagging"/>
34 <ant antfile="build.xml" target="dist" dir="piclayer"/>
35 <ant antfile="build.xml" target="dist" dir="plastic_laf"/>
36 <ant antfile="build.xml" target="dist" dir="public_transport"/>
37 <ant antfile="build.xml" target="dist" dir="remotecontrol"/>
38 <ant antfile="build.xml" target="dist" dir="routes"/>
39 <ant antfile="build.xml" target="dist" dir="routing"/>
40 <ant antfile="build.xml" target="dist" dir="slippymap"/>
41 <ant antfile="build.xml" target="dist" dir="surveyor"/>
42 <ant antfile="build.xml" target="dist" dir="tageditor"/>
43 <ant antfile="build.xml" target="dist" dir="tagging-preset-tester"/>
44 <ant antfile="build.xml" target="dist" dir="terracer"/>
45 <ant antfile="build.xml" target="dist" dir="tracer"/>
46 <ant antfile="build.xml" target="dist" dir="turnrestrictions"/>
47 <ant antfile="build.xml" target="dist" dir="undelete"/>
48 <ant antfile="build.xml" target="dist" dir="validator"/>
49 <ant antfile="build.xml" target="dist" dir="walkingpapers"/>
50 <ant antfile="build.xml" target="dist" dir="waydownloader"/>
51 <ant antfile="build.xml" target="dist" dir="wayselector"/>
52 <ant antfile="build.xml" target="dist" dir="wmsplugin"/>
53 <ant antfile="build.xml" target="dist" dir="wms-turbo-challenge2"/>
54 </target>
55 <target name="build_defect" depends="compile">
56 <ant antfile="build.xml" target="dist" dir="duplicateway"/>
57 <ant antfile="build.xml" target="dist" dir="grid"/>
58 </target>
59 <target name="clean">
60 <ant antfile="build.xml" target="clean" dir="addrinterpolation"/>
61 <ant antfile="build.xml" target="clean" dir="buildings_tools"/>
62 <ant antfile="build.xml" target="clean" dir="cadastre-fr"/>
63 <ant antfile="build.xml" target="clean" dir="colorscheme"/>
64 <ant antfile="build.xml" target="clean" dir="Create_grid_of_ways"/>
65 <ant antfile="build.xml" target="clean" dir="czechaddress"/>
66 <ant antfile="build.xml" target="clean" dir="dataimport"/>
67 <ant antfile="build.xml" target="clean" dir="DirectUpload"/>
68 <ant antfile="build.xml" target="clean" dir="duplicateway"/>
69 <ant antfile="build.xml" target="clean" dir="editgpx"/>
70 <ant antfile="build.xml" target="clean" dir="globalsat"/>
71 <ant antfile="build.xml" target="clean" dir="graphview"/>
72 <ant antfile="build.xml" target="clean" dir="grid"/>
73 <ant antfile="build.xml" target="clean" dir="imagewaypoint"/>
74 <ant antfile="build.xml" target="clean" dir="lakewalker"/>
75 <ant antfile="build.xml" target="clean" dir="livegps"/>
76 <ant antfile="build.xml" target="clean" dir="measurement"/>
77 <ant antfile="build.xml" target="clean" dir="michigan_left"/>
78 <ant antfile="build.xml" target="clean" dir="multipoly"/>
79 <ant antfile="build.xml" target="clean" dir="multipoly-convert"/>
80 <ant antfile="build.xml" target="clean" dir="nearclick"/>
81 <ant antfile="build.xml" target="clean" dir="openlayers"/>
82 <ant antfile="build.xml" target="clean" dir="openstreetbugs"/>
83 <ant antfile="build.xml" target="clean" dir="openvisible"/>
84 <ant antfile="build.xml" target="clean" dir="osmarender"/>
85 <ant antfile="build.xml" target="clean" dir="photo_geotagging"/>
86 <ant antfile="build.xml" target="clean" dir="piclayer"/>
87 <ant antfile="build.xml" target="clean" dir="plastic_laf"/>
88 <ant antfile="build.xml" target="clean" dir="public_transport"/>
89 <ant antfile="build.xml" target="clean" dir="remotecontrol"/>
90 <ant antfile="build.xml" target="clean" dir="routes"/>
91 <ant antfile="build.xml" target="clean" dir="routing"/>
92 <ant antfile="build.xml" target="clean" dir="slippymap"/>
93 <ant antfile="build.xml" target="clean" dir="surveyor"/>
94 <ant antfile="build.xml" target="clean" dir="tageditor"/>
95 <ant antfile="build.xml" target="clean" dir="tagging-preset-tester"/>
96 <ant antfile="build.xml" target="clean" dir="terracer"/>
97 <ant antfile="build.xml" target="clean" dir="tracer"/>
98 <ant antfile="build.xml" target="clean" dir="turnrestrictions"/>
99 <ant antfile="build.xml" target="clean" dir="undelete"/>
100 <ant antfile="build.xml" target="clean" dir="validator"/>
101 <ant antfile="build.xml" target="clean" dir="walkingpapers"/>
102 <ant antfile="build.xml" target="clean" dir="waydownloader"/>
103 <ant antfile="build.xml" target="clean" dir="wayselector"/>
104 <ant antfile="build.xml" target="clean" dir="wmsplugin"/>
105 <ant antfile="build.xml" target="clean" dir="wms-turbo-challenge2"/>
106 </target>
107 <target name="clean_install"></target>
108 <target name="install" depends="dist"></target>
109</project>
Note: See TracBrowser for help on using the repository browser.