Changeset 5147 in osm for applications/editors/josm/plugins/build.xml
- Timestamp:
- 2007-10-24T07:31:46+02:00 (18 years ago)
- File:
-
- 1 edited
-
applications/editors/josm/plugins/build.xml (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/build.xml
r5018 r5147 1 1 <project name="josm-plugins" default="build" basedir="."> 2 2 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>-->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>--> 12 12 13 <!-- you should not need to modify anything below this! -->13 <!-- you should not need to modify anything below this! --> 14 14 15 15 16 <target name="compile_josm">17 <ant dir="../core" target="dist" />18 </target>16 <target name="compile_josm"> 17 <ant dir="../core" target="dist" /> 18 </target> 19 19 20 <target name="compile" depends="compile_josm">21 </target>20 <target name="compile" depends="compile_josm"> 21 </target> 22 22 23 <target name="build" depends="compile"> 24 <ant dir="colorscheme" antfile="build.xml" target="dist"/> 25 <!--ant dir="grid" antfile="build.xml" target="build"/--> 26 <ant dir="lang" antfile="build.xml" target="install-all"/> 27 <ant dir="livegps" antfile="build.xml" target="dist"/> 28 <ant dir="mappaint" antfile="build.xml" target="build"/> 29 <ant dir="namefinder" antfile="build.xml" target="dist"/> 30 <!-- ant dir="navigator" antfile="build.xml" target="dist"/ --> 31 <ant dir="nearclick" antfile="build.xml" target="build"/> 32 <ant dir="osmarender" antfile="build.xml" target="build"/> 33 <ant dir="plastic_laf" antfile="build.xml" target="build"/> 34 <!-- ant dir="pluginmanager" antfile="build.xml" target="dist"/ --> 35 <ant dir="slippymap" antfile="build.xml" target="dist"/> 36 <!-- ant dir="surveyor" antfile="build.xml" target="dist"/ --> 37 <ant dir="tagging-preset-tester" antfile="build.xml" target="build"/> 38 <!-- ant dir="tways" antfile="build.xml" target="build"/ --> 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"/> 43 </target> 23 <target name="build" depends="compile"> 24 <ant dir="colorscheme" antfile="build.xml" target="dist"/> 25 <ant dir="lang" antfile="build.xml" target="install-all"/> 26 <ant dir="mappaint" antfile="build.xml" target="build"/> 27 <ant dir="namefinder" antfile="build.xml" target="dist"/> 28 <ant dir="nearclick" antfile="build.xml" target="build"/> 29 <ant dir="osmarender" antfile="build.xml" target="build"/> 30 <ant dir="plastic_laf" antfile="build.xml" target="build"/> 31 <ant dir="slippymap" antfile="build.xml" target="dist"/> 32 <ant dir="tagging-preset-tester" antfile="build.xml" target="build"/> 33 <ant dir="validator" antfile="build.xml" target="build"/> 34 <ant dir="wmsplugin" antfile="build.xml" target="build"/> 35 <ant dir="ywms" antfile="build.xml" target="build"/> 44 36 45 <target name="clean"> 46 <ant dir="colorscheme" antfile="build.xml" target="clean"/> 47 <ant dir="grid" antfile="build.xml" target="clean"/> 48 <ant dir="lang" antfile="build.xml" target="clean"/> 49 <ant dir="livegps" antfile="build.xml" target="clean"/> 50 <ant dir="mappaint" antfile="build.xml" target="clean"/> 51 <ant dir="namefinder" antfile="build.xml" target="clean"/> 52 <ant dir="navigator" antfile="build.xml" target="clean"/> 53 <ant dir="nearclick" antfile="build.xml" target="clean"/> 54 <ant dir="osmarender" antfile="build.xml" target="clean"/> 55 <ant dir="plastic_laf" antfile="build.xml" target="clean"/> 56 <ant dir="pluginmanager" antfile="build.xml" target="clean"/> 57 <ant dir="surveyor" antfile="build.xml" target="clean"/> 58 <ant dir="tagging-preset-tester" antfile="build.xml" target="clean"/> 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"/> 64 </target> 37 <ant dir="livegps" antfile="build.xml" target="dist"/> 38 <ant dir="surveyor" antfile="build.xml" target="dist"/> 39 <!--ant dir="grid" antfile="build.xml" target="build"/--> 40 <!-- ant dir="pluginmanager" antfile="build.xml" target="dist"/ --> 41 <!-- ant dir="tways" antfile="build.xml" target="build"/ --> 42 <!-- ant dir="waypoints" antfile="build.xml" target="build"/ --> 43 <!-- ant dir="navigator" antfile="build.xml" target="dist"/ --> 44 </target> 65 45 66 <target name="clean_install"> 67 </target> 46 <target name="clean"> 47 <ant dir="colorscheme" antfile="build.xml" target="clean"/> 48 <ant dir="grid" antfile="build.xml" target="clean"/> 49 <ant dir="lang" antfile="build.xml" target="clean"/> 50 <ant dir="mappaint" antfile="build.xml" target="clean"/> 51 <ant dir="namefinder" antfile="build.xml" target="clean"/> 52 <ant dir="navigator" antfile="build.xml" target="clean"/> 53 <ant dir="nearclick" antfile="build.xml" target="clean"/> 54 <ant dir="osmarender" antfile="build.xml" target="clean"/> 55 <ant dir="plastic_laf" antfile="build.xml" target="clean"/> 56 <ant dir="pluginmanager" antfile="build.xml" target="clean"/> 57 <ant dir="tagging-preset-tester" antfile="build.xml" target="clean"/> 58 <ant dir="tways" antfile="build.xml" target="clean"/> 59 <ant dir="validator" antfile="build.xml" target="clean"/> 60 <ant dir="waypoints" antfile="build.xml" target="clean"/> 61 <ant dir="wmsplugin" antfile="build.xml" target="clean"/> 62 <ant dir="ywms" antfile="build.xml" target="clean"/> 68 63 69 <target name="install" depends="build"> 70 </target> 64 <ant dir="surveyor" antfile="build.xml" target="clean"/> 65 <ant dir="livegps" antfile="build.xml" target="clean"/> 66 </target> 67 68 <target name="clean_install"> 69 </target> 70 71 <target name="install" depends="build"> 72 </target> 71 73 72 74 </project>
Note:
See TracChangeset
for help on using the changeset viewer.
