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

Last change on this file since 15961 was 15931, checked in by joerg, 15 years ago

For now i disabled the following plugins, since the do not compile ...
As soon as the source/build.xml is fixed the can be enabled again.

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