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

Last change on this file since 20269 was 20245, checked in by upliner, 14 years ago

Move buildings_tools plugin to SVN

See http://upliner.openstreetmap.ru/.gitphp/index.php?p=buildings_tools.git for older revisions

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