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

Last change on this file since 20283 was 20283, checked in by jttt, 14 years ago

Allow to build plugin without compiling josm

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