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

Last change on this file since 4093 was 3996, checked in by imi, 17 years ago

fixed build.xml and several svn:ignore's for JOSM plugins

File size: 3.3 KB
RevLine 
[3779]1<project name="josm-plugins" default="build" basedir=".">
2
3 <!-- There's no josm.jar in the svn, so point "josm" to a local copy of your JOSM binary -->
[3781]4 <!--<property name="josm" location="../../../../editors/josm/dist/josm-custom.jar" />-->
5 <!--<property name="josm" location="../josm/josm-latest.jar" ></property>-->
[3779]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>-->
[3781]11 <!--<property name="plugins" location="${user.home}/Anwendungsdaten/JOSM/plugins" ></property>-->
[3779]12
13 <!-- you should not need to modify anything below this! -->
14
15
[3996]16 <target name="compile_josm">
17 <ant dir="../core" target="dist" />
[3779]18 </target>
19
[3996]20 <target name="compile" depends="compile_josm">
[3779]21 </target>
22
23 <target name="build" depends="compile">
[3785]24 <ant dir="colorscheme" antfile="build.xml" target="dist"/>
[3996]25 <!--ant dir="grid" antfile="build.xml" target="build"/-->
26 <ant dir="lang" antfile="build.xml" target="install-all"/>
[3784]27 <ant dir="livegps" antfile="build.xml" target="dist"/>
[3781]28 <ant dir="mappaint" antfile="build.xml" target="build"/>
[3782]29 <ant dir="namefinder" antfile="build.xml" target="dist"/>
[3779]30 <ant dir="navigator" antfile="build.xml" target="dist"/>
[3789]31 <ant dir="nearclick" antfile="build.xml" target="build"/>
[3786]32 <ant dir="osmarender" antfile="build.xml" target="build"/>
[3792]33 <ant dir="plastic_laf" antfile="build.xml" target="build"/>
34 <ant dir="pluginmanager" antfile="build.xml" target="dist"/>
[3788]35 <ant dir="slippymap" antfile="build.xml" target="dist"/>
[3790]36 <ant dir="surveyor" antfile="build.xml" target="dist"/>
[3788]37 <ant dir="tagging-preset-tester" antfile="build.xml" target="build"/>
[3800]38 <ant dir="tways" antfile="build.xml" target="build"/>
[3788]39 <ant dir="validator" antfile="build.xml" target="build"/>
40 <ant dir="waypoints" antfile="build.xml" target="build"/>
41 <ant dir="wmsplugin" antfile="build.xml" target="build"/>
42 <ant dir="ywms" antfile="build.xml" target="build"/>
[3779]43 </target>
44
45 <target name="clean">
[3785]46 <ant dir="colorscheme" antfile="build.xml" target="clean"/>
[3996]47 <!--ant dir="grid" antfile="build.xml" target="clean"/-->
48 <ant dir="lang" antfile="build.xml" target="clean"/>
[3784]49 <ant dir="livegps" antfile="build.xml" target="clean"/>
[3781]50 <ant dir="mappaint" antfile="build.xml" target="clean"/>
[3782]51 <ant dir="namefinder" antfile="build.xml" target="clean"/>
[3779]52 <ant dir="navigator" antfile="build.xml" target="clean"/>
[3789]53 <ant dir="nearclick" antfile="build.xml" target="clean"/>
[3786]54 <ant dir="osmarender" antfile="build.xml" target="clean"/>
[3787]55 <ant dir="plastic_laf" antfile="build.xml" target="clean"/>
56 <ant dir="pluginmanager" antfile="build.xml" target="clean"/>
[3788]57 <ant dir="surveyor" antfile="build.xml" target="clean"/>
[3791]58 <ant dir="tagging-preset-tester" antfile="build.xml" target="clean"/>
[3788]59 <ant dir="tways" antfile="build.xml" target="clean"/>
60 <ant dir="validator" antfile="build.xml" target="clean"/>
61 <ant dir="waypoints" antfile="build.xml" target="clean"/>
62 <ant dir="wmsplugin" antfile="build.xml" target="clean"/>
63 <ant dir="ywms" antfile="build.xml" target="clean"/>
[3779]64 </target>
65
66 <target name="clean_install">
67 </target>
68
69 <target name="install" depends="build">
70 </target>
71
72</project>
Note: See TracBrowser for help on using the repository browser.