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

Last change on this file since 11990 was 11554, checked in by mfloryan, 16 years ago

Removed obsolete plugin from the ant clean target.

File size: 3.5 KB
RevLine 
[3779]1<project name="josm-plugins" default="build" basedir=".">
2
3
[5147]4 <target name="compile_josm">
5 <ant dir="../core" target="dist" />
6 </target>
[3779]7
[5147]8 <target name="compile" depends="compile_josm">
9 </target>
[3779]10
[5153]11 <target name="build" depends="dist">
12 </target>
13
14 <target name="dist" depends="compile">
[6102]15 <mkdir dir="../dist"/>
[10122]16 <ant dir="agpifoj" antfile="build.xml" target="dist"/>
[5147]17 <ant dir="colorscheme" antfile="build.xml" target="dist"/>
[7288]18 <ant dir="duplicateway" antfile="build.xml" target="dist"/>
[10410]19 <ant dir="globalsat" antfile="build.xml" target="dist"/>
[9274]20 <ant dir="lakewalker" antfile="build.xml" target="dist"/>
21 <ant dir="livegps" antfile="build.xml" target="dist"/>
[10410]22 <ant dir="measurement" antfile="build.xml" target="dist"/>
[5147]23 <ant dir="namefinder" antfile="build.xml" target="dist"/>
[5153]24 <ant dir="nearclick" antfile="build.xml" target="dist"/>
[9245]25 <ant dir="openvisible" antfile="build.xml" target="dist"/>
[5153]26 <ant dir="osmarender" antfile="build.xml" target="dist"/>
27 <ant dir="plastic_laf" antfile="build.xml" target="dist"/>
[9948]28 <ant dir="pluginmanager" antfile="build.xml" target="dist"/>
[5147]29 <ant dir="slippymap" antfile="build.xml" target="dist"/>
[10336]30 <ant dir="slippy_map_chooser" antfile="build.xml" target="dist"/>
[9949]31 <ant dir="surveyor" antfile="build.xml" target="dist"/>
[9948]32 <ant dir="tagging-preset-tester" antfile="build.xml" target="dist"/>
[5153]33 <ant dir="utilsplugin" antfile="build.xml" target="dist"/>
34 <ant dir="validator" antfile="build.xml" target="dist"/>
[9949]35 <ant dir="waypoints" antfile="build.xml" target="dist"/>
[5153]36 <ant dir="wmsplugin" antfile="build.xml" target="dist"/>
37 <ant dir="ywms" antfile="build.xml" target="dist"/>
[5147]38 </target>
[3779]39
[5153]40 <target name="build_defect" depends="compile">
[9274]41 <ant dir="grid" antfile="build.xml" target="dist"/>
[5153]42 <ant dir="navigator" antfile="build.xml" target="dist"/>
43 </target>
44
[5147]45 <target name="clean">
[10122]46 <ant dir="agpifoj" antfile="build.xml" target="clean"/>
[5147]47 <ant dir="colorscheme" antfile="build.xml" target="clean"/>
[5153]48 <ant dir="duplicateway" antfile="build.xml" target="clean"/>
[10410]49 <ant dir="globalsat" antfile="build.xml" target="clean"/>
[5147]50 <ant dir="grid" antfile="build.xml" target="clean"/>
[5153]51 <ant dir="lakewalker" antfile="build.xml" target="clean"/>
[9274]52 <ant dir="livegps" antfile="build.xml" target="clean"/>
[10410]53 <ant dir="measurement" antfile="build.xml" target="clean"/>
[5147]54 <ant dir="namefinder" antfile="build.xml" target="clean"/>
55 <ant dir="navigator" antfile="build.xml" target="clean"/>
56 <ant dir="nearclick" antfile="build.xml" target="clean"/>
[5153]57 <ant dir="openvisible" antfile="build.xml" target="clean"/>
[5147]58 <ant dir="osmarender" antfile="build.xml" target="clean"/>
59 <ant dir="plastic_laf" antfile="build.xml" target="clean"/>
60 <ant dir="pluginmanager" antfile="build.xml" target="clean"/>
[5153]61 <ant dir="slippymap" antfile="build.xml" target="clean"/>
[10336]62 <ant dir="slippy_map_chooser" antfile="build.xml" target="clean"/>
[9274]63 <ant dir="surveyor" antfile="build.xml" target="clean"/>
[5147]64 <ant dir="tagging-preset-tester" antfile="build.xml" target="clean"/>
[5153]65 <ant dir="utilsplugin" antfile="build.xml" target="clean"/>
[5147]66 <ant dir="validator" antfile="build.xml" target="clean"/>
67 <ant dir="waypoints" antfile="build.xml" target="clean"/>
68 <ant dir="wmsplugin" antfile="build.xml" target="clean"/>
69 <ant dir="ywms" antfile="build.xml" target="clean"/>
70 </target>
[3779]71
[5147]72 <target name="clean_install">
73 </target>
74
[5153]75 <target name="install" depends="dist">
[5147]76 </target>
77
[3779]78</project>
Note: See TracBrowser for help on using the repository browser.