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

Last change on this file since 6099 was 6067, checked in by gabriel, 17 years ago

Revert r6066 (remove mappaint/build.xml), and remove instead the reference to
it from plugins/build.xml, which the bug reporter was actually using.

File size: 3.8 KB
RevLine 
[3779]1<project name="josm-plugins" default="build" basedir=".">
2
[5147]3 <!-- There's no josm.jar in the svn, so point "josm" to a local copy of your JOSM binary -->
4 <!--<property name="josm" location="../../../../editors/josm/dist/josm-custom.jar" />-->
5 <!--<property name="josm" location="../josm/josm-latest.jar" ></property>-->
6
7 <!-- target directory to place the plugin in -->
8 <!-- Windows has a different home directory scheme then unix/linux -->
9 <!-- I don't know an automatic way to find it with ant :-(, if you know, please fix -->
10 <!--<property name="plugins" location="${user.home}/.josm/plugins" ></property>-->
11 <!--<property name="plugins" location="${user.home}/Anwendungsdaten/JOSM/plugins" ></property>-->
[3779]12
[5147]13 <!-- you should not need to modify anything below this! -->
[3779]14
15
[5147]16 <target name="compile_josm">
17 <ant dir="../core" target="dist" />
18 </target>
[3779]19
[5147]20 <target name="compile" depends="compile_josm">
21 </target>
[3779]22
[5153]23 <target name="build" depends="dist">
24 </target>
25
26 <target name="dist" depends="compile">
27 <mkdir dir="dist"/>
[5147]28 <ant dir="colorscheme" antfile="build.xml" target="dist"/>
[5436]29 <!--ant dir="duplicateway" antfile="build.xml" target="dist"/ code still uses API 0.4 -->
[5153]30 <ant dir="lang" antfile="build.xml" target="dist"/>
[5147]31 <ant dir="namefinder" antfile="build.xml" target="dist"/>
[5153]32 <ant dir="nearclick" antfile="build.xml" target="dist"/>
33 <ant dir="openvisible" antfile="build.xml" target="dist"/>
34 <ant dir="osmarender" antfile="build.xml" target="dist"/>
35 <ant dir="plastic_laf" antfile="build.xml" target="dist"/>
[5147]36 <ant dir="slippymap" antfile="build.xml" target="dist"/>
[5153]37 <ant dir="tagging-preset-tester" antfile="build.xml" target="dist"/>
38 <ant dir="utilsplugin" antfile="build.xml" target="dist"/>
39 <ant dir="validator" antfile="build.xml" target="dist"/>
40 <ant dir="wmsplugin" antfile="build.xml" target="dist"/>
41 <ant dir="ywms" antfile="build.xml" target="dist"/>
[3779]42
[5147]43 <ant dir="livegps" antfile="build.xml" target="dist"/>
44 <ant dir="surveyor" antfile="build.xml" target="dist"/>
45 </target>
[3779]46
[5153]47 <target name="build_defect" depends="compile">
48 <ant dir="lakewalker" antfile="build.xml" target="dist"/>
49 <ant dir="navigator" antfile="build.xml" target="dist"/>
50 <ant dir="pluginmanager" antfile="build.xml" target="dist"/>
51 <ant dir="waypoints" antfile="build.xml" target="dist"/>
52 <ant dir="grid" antfile="build.xml" target="dist"/>
53 </target>
54
[5147]55 <target name="clean">
56 <ant dir="colorscheme" antfile="build.xml" target="clean"/>
[5153]57 <ant dir="duplicateway" antfile="build.xml" target="clean"/>
[5147]58 <ant dir="grid" antfile="build.xml" target="clean"/>
[5153]59 <ant dir="lakewalker" antfile="build.xml" target="clean"/>
[5147]60 <ant dir="lang" antfile="build.xml" target="clean"/>
61 <ant dir="namefinder" antfile="build.xml" target="clean"/>
62 <ant dir="navigator" antfile="build.xml" target="clean"/>
63 <ant dir="nearclick" antfile="build.xml" target="clean"/>
[5153]64 <ant dir="openvisible" antfile="build.xml" target="clean"/>
[5147]65 <ant dir="osmarender" antfile="build.xml" target="clean"/>
66 <ant dir="plastic_laf" antfile="build.xml" target="clean"/>
67 <ant dir="pluginmanager" antfile="build.xml" target="clean"/>
[5153]68 <ant dir="slippymap" antfile="build.xml" target="clean"/>
[5147]69 <ant dir="tagging-preset-tester" antfile="build.xml" target="clean"/>
[5153]70 <ant dir="utilsplugin" antfile="build.xml" target="clean"/>
[5147]71 <ant dir="validator" antfile="build.xml" target="clean"/>
72 <ant dir="waypoints" antfile="build.xml" target="clean"/>
73 <ant dir="wmsplugin" antfile="build.xml" target="clean"/>
74 <ant dir="ywms" antfile="build.xml" target="clean"/>
[3779]75
[5147]76 <ant dir="surveyor" antfile="build.xml" target="clean"/>
77 <ant dir="livegps" antfile="build.xml" target="clean"/>
78 </target>
[3779]79
[5147]80 <target name="clean_install">
81 </target>
82
[5153]83 <target name="install" depends="dist">
[5147]84 </target>
85
[3779]86</project>
Note: See TracBrowser for help on using the repository browser.