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

Last change on this file since 14138 was 14127, checked in by stoecker, 16 years ago

removed old pluginmanager code

File size: 4.2 KB
RevLine 
[3779]1<project name="josm-plugins" default="build" basedir=".">
[12780]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"/>
[13585]10 <ant antfile="build.xml" target="dist" dir="cadastre-fr"/>
[12780]11 <ant antfile="build.xml" target="dist" dir="colorscheme"/>
12 <ant antfile="build.xml" target="dist" dir="DirectUpload"/>
13 <ant antfile="build.xml" target="dist" dir="globalsat"/>
14 <ant antfile="build.xml" target="dist" dir="imagewaypoint"/>
15 <ant antfile="build.xml" target="dist" dir="lakewalker"/>
16 <ant antfile="build.xml" target="dist" dir="livegps"/>
17 <ant antfile="build.xml" target="dist" dir="measurement"/>
18 <ant antfile="build.xml" target="dist" dir="nearclick"/>
[13585]19 <ant antfile="build.xml" target="dist" dir="openlayers"/>
[12992]20 <ant antfile="build.xml" target="dist" dir="openstreetbugs"/>
[12780]21 <ant antfile="build.xml" target="dist" dir="openvisible"/>
22 <ant antfile="build.xml" target="dist" dir="osmarender"/>
23 <ant antfile="build.xml" target="dist" dir="plastic_laf"/>
24 <ant antfile="build.xml" target="dist" dir="remotecontrol"/>
25 <ant antfile="build.xml" target="dist" dir="slippymap"/>
26 <ant antfile="build.xml" target="dist" dir="surveyor"/>
27 <ant antfile="build.xml" target="dist" dir="tagging-preset-tester"/>
28 <ant antfile="build.xml" target="dist" dir="tcxplugin"/>
[13585]29 <ant antfile="build.xml" target="dist" dir="terracer"/>
[12992]30 <ant antfile="build.xml" target="dist" dir="usertools"/>
[12780]31 <ant antfile="build.xml" target="dist" dir="utilsplugin"/>
32 <ant antfile="build.xml" target="dist" dir="validator"/>
33 <ant antfile="build.xml" target="dist" dir="wmsplugin"/>
34 </target>
35 <target name="build_defect" depends="compile">
36 <ant antfile="build.xml" target="dist" dir="duplicateway"/>
37 <ant antfile="build.xml" target="dist" dir="grid"/>
38 <ant antfile="build.xml" target="dist" dir="navigator"/>
39 </target>
40 <target name="clean">
41 <ant antfile="build.xml" target="clean" dir="agpifoj"/>
[13585]42 <ant antfile="build.xml" target="clean" dir="cadastre-fr"/>
[12780]43 <ant antfile="build.xml" target="clean" dir="colorscheme"/>
[14125]44 <ant antfile="build.xml" target="clean" dir="DirectUpload"/>
[12780]45 <ant antfile="build.xml" target="clean" dir="duplicateway"/>
46 <ant antfile="build.xml" target="clean" dir="globalsat"/>
47 <ant antfile="build.xml" target="clean" dir="grid"/>
48 <ant antfile="build.xml" target="clean" dir="imagewaypoint"/>
49 <ant antfile="build.xml" target="clean" dir="lakewalker"/>
50 <ant antfile="build.xml" target="clean" dir="livegps"/>
51 <ant antfile="build.xml" target="clean" dir="measurement"/>
52 <ant antfile="build.xml" target="clean" dir="navigator"/>
53 <ant antfile="build.xml" target="clean" dir="nearclick"/>
[13585]54 <ant antfile="build.xml" target="clean" dir="openlayers"/>
[12992]55 <ant antfile="build.xml" target="clean" dir="openstreetbugs"/>
[12780]56 <ant antfile="build.xml" target="clean" dir="openvisible"/>
57 <ant antfile="build.xml" target="clean" dir="osmarender"/>
58 <ant antfile="build.xml" target="clean" dir="plastic_laf"/>
59 <ant antfile="build.xml" target="clean" dir="remotecontrol"/>
60 <ant antfile="build.xml" target="clean" dir="slippymap"/>
61 <ant antfile="build.xml" target="clean" dir="surveyor"/>
62 <ant antfile="build.xml" target="clean" dir="tagging-preset-tester"/>
63 <ant antfile="build.xml" target="clean" dir="tcxplugin"/>
[13585]64 <ant antfile="build.xml" target="clean" dir="terracer"/>
[12992]65 <ant antfile="build.xml" target="clean" dir="usertools"/>
[12780]66 <ant antfile="build.xml" target="clean" dir="utilsplugin"/>
67 <ant antfile="build.xml" target="clean" dir="validator"/>
68 <ant antfile="build.xml" target="clean" dir="wmsplugin"/>
69 </target>
70 <target name="clean_install"></target>
71 <target name="install" depends="dist"></target>
[3779]72</project>
Note: See TracBrowser for help on using the repository browser.