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

Last change on this file since 22835 was 22753, checked in by boman, 15 years ago

OpeningHoursEditor: changes to buildfiles and jar file added

File size: 7.2 KB
RevLine 
[3779]1<project name="josm-plugins" default="build" basedir=".">
[20283]2 <target name="compile_josm" unless="skip-josm">
[20583]3 <echo message="test"/>
[12780]4 <ant dir="../core" target="dist" />
5 </target>
6 <target name="compile" depends="compile_josm"></target>
7 <target name="build" depends="dist"></target>
8 <target name="dist" depends="compile">
9 <mkdir dir="../dist"/>
[18960]10 <ant antfile="build.xml" target="dist" dir="addrinterpolation"/>
[20245]11 <ant antfile="build.xml" target="dist" dir="buildings_tools"/>
[13585]12 <ant antfile="build.xml" target="dist" dir="cadastre-fr"/>
[12780]13 <ant antfile="build.xml" target="dist" dir="colorscheme"/>
[14371]14 <ant antfile="build.xml" target="dist" dir="Create_grid_of_ways"/>
[16177]15 <ant antfile="build.xml" target="dist" dir="czechaddress"/>
[16176]16 <ant antfile="build.xml" target="dist" dir="dataimport"/>
[12780]17 <ant antfile="build.xml" target="dist" dir="DirectUpload"/>
[14221]18 <ant antfile="build.xml" target="dist" dir="editgpx"/>
[12780]19 <ant antfile="build.xml" target="dist" dir="globalsat"/>
[16607]20 <ant antfile="build.xml" target="dist" dir="graphview"/>
[12780]21 <ant antfile="build.xml" target="dist" dir="imagewaypoint"/>
22 <ant antfile="build.xml" target="dist" dir="lakewalker"/>
23 <ant antfile="build.xml" target="dist" dir="livegps"/>
24 <ant antfile="build.xml" target="dist" dir="measurement"/>
[17654]25 <ant antfile="build.xml" target="dist" dir="michigan_left"/>
[18078]26 <ant antfile="build.xml" target="dist" dir="multipoly"/>
[20416]27 <ant antfile="build.xml" target="dist" dir="multipoly-convert"/>
[12780]28 <ant antfile="build.xml" target="dist" dir="nearclick"/>
[22753]29 <ant antfile="build.xml" target="dist" dir="OpeningHoursEditor"/>
[13585]30 <ant antfile="build.xml" target="dist" dir="openlayers"/>
[12992]31 <ant antfile="build.xml" target="dist" dir="openstreetbugs"/>
[12780]32 <ant antfile="build.xml" target="dist" dir="openvisible"/>
33 <ant antfile="build.xml" target="dist" dir="osmarender"/>
[21186]34 <ant antfile="build.xml" target="dist" dir="photo_geotagging"/>
[16177]35 <ant antfile="build.xml" target="dist" dir="piclayer"/>
[12780]36 <ant antfile="build.xml" target="dist" dir="plastic_laf"/>
[21186]37 <ant antfile="build.xml" target="dist" dir="public_transport"/>
[12780]38 <ant antfile="build.xml" target="dist" dir="remotecontrol"/>
[21253]39 <ant antfile="build.xml" target="dist" dir="reverter"/>
[16428]40 <ant antfile="build.xml" target="dist" dir="routes"/>
[14287]41 <ant antfile="build.xml" target="dist" dir="routing"/>
[12780]42 <ant antfile="build.xml" target="dist" dir="slippymap"/>
43 <ant antfile="build.xml" target="dist" dir="surveyor"/>
[21186]44 <ant antfile="build.xml" target="dist" dir="tageditor"/>
[12780]45 <ant antfile="build.xml" target="dist" dir="tagging-preset-tester"/>
[13585]46 <ant antfile="build.xml" target="dist" dir="terracer"/>
[21575]47 <ant antfile="build.xml" target="dist" dir="touchscreenhelper"/>
[19921]48 <ant antfile="build.xml" target="dist" dir="tracer"/>
[21186]49 <ant antfile="build.xml" target="dist" dir="turnrestrictions"/>
50 <ant antfile="build.xml" target="dist" dir="undelete"/>
[16410]51 <ant antfile="build.xml" target="dist" dir="validator"/>
[21253]52 <ant antfile="build.xml" target="dist" dir="videomapping"/>
[16607]53 <ant antfile="build.xml" target="dist" dir="walkingpapers"/>
[16177]54 <ant antfile="build.xml" target="dist" dir="waydownloader"/>
[21186]55 <ant antfile="build.xml" target="dist" dir="wayselector"/>
[12780]56 <ant antfile="build.xml" target="dist" dir="wmsplugin"/>
[19991]57 <ant antfile="build.xml" target="dist" dir="wms-turbo-challenge2"/>
[12780]58 </target>
59 <target name="build_defect" depends="compile">
60 <ant antfile="build.xml" target="dist" dir="duplicateway"/>
61 <ant antfile="build.xml" target="dist" dir="grid"/>
62 </target>
63 <target name="clean">
[18960]64 <ant antfile="build.xml" target="clean" dir="addrinterpolation"/>
[20245]65 <ant antfile="build.xml" target="clean" dir="buildings_tools"/>
[13585]66 <ant antfile="build.xml" target="clean" dir="cadastre-fr"/>
[12780]67 <ant antfile="build.xml" target="clean" dir="colorscheme"/>
[14371]68 <ant antfile="build.xml" target="clean" dir="Create_grid_of_ways"/>
[15167]69 <ant antfile="build.xml" target="clean" dir="czechaddress"/>
[16176]70 <ant antfile="build.xml" target="clean" dir="dataimport"/>
[14125]71 <ant antfile="build.xml" target="clean" dir="DirectUpload"/>
[12780]72 <ant antfile="build.xml" target="clean" dir="duplicateway"/>
[14221]73 <ant antfile="build.xml" target="clean" dir="editgpx"/>
[12780]74 <ant antfile="build.xml" target="clean" dir="globalsat"/>
[16607]75 <ant antfile="build.xml" target="clean" dir="graphview"/>
[12780]76 <ant antfile="build.xml" target="clean" dir="grid"/>
77 <ant antfile="build.xml" target="clean" dir="imagewaypoint"/>
78 <ant antfile="build.xml" target="clean" dir="lakewalker"/>
79 <ant antfile="build.xml" target="clean" dir="livegps"/>
80 <ant antfile="build.xml" target="clean" dir="measurement"/>
[17654]81 <ant antfile="build.xml" target="clean" dir="michigan_left"/>
[18078]82 <ant antfile="build.xml" target="clean" dir="multipoly"/>
[20583]83 <ant antfile="build.xml" target="clean" dir="multipoly-convert"/>
[12780]84 <ant antfile="build.xml" target="clean" dir="nearclick"/>
[22753]85 <ant antfile="build.xml" target="clean" dir="OpeningHoursEditor"/>
[13585]86 <ant antfile="build.xml" target="clean" dir="openlayers"/>
[12992]87 <ant antfile="build.xml" target="clean" dir="openstreetbugs"/>
[12780]88 <ant antfile="build.xml" target="clean" dir="openvisible"/>
89 <ant antfile="build.xml" target="clean" dir="osmarender"/>
[21186]90 <ant antfile="build.xml" target="clean" dir="photo_geotagging"/>
[14839]91 <ant antfile="build.xml" target="clean" dir="piclayer"/>
[12780]92 <ant antfile="build.xml" target="clean" dir="plastic_laf"/>
[19993]93 <ant antfile="build.xml" target="clean" dir="public_transport"/>
[12780]94 <ant antfile="build.xml" target="clean" dir="remotecontrol"/>
[21253]95 <ant antfile="build.xml" target="clean" dir="reverter"/>
[16607]96 <ant antfile="build.xml" target="clean" dir="routes"/>
[14287]97 <ant antfile="build.xml" target="clean" dir="routing"/>
[12780]98 <ant antfile="build.xml" target="clean" dir="slippymap"/>
99 <ant antfile="build.xml" target="clean" dir="surveyor"/>
[21186]100 <ant antfile="build.xml" target="clean" dir="tageditor"/>
[12780]101 <ant antfile="build.xml" target="clean" dir="tagging-preset-tester"/>
[13585]102 <ant antfile="build.xml" target="clean" dir="terracer"/>
[21575]103 <ant antfile="build.xml" target="clean" dir="touchscreenhelper"/>
[19921]104 <ant antfile="build.xml" target="clean" dir="tracer"/>
[21186]105 <ant antfile="build.xml" target="clean" dir="turnrestrictions"/>
106 <ant antfile="build.xml" target="clean" dir="undelete"/>
[12780]107 <ant antfile="build.xml" target="clean" dir="validator"/>
[21253]108 <ant antfile="build.xml" target="clean" dir="videomapping"/>
[16607]109 <ant antfile="build.xml" target="clean" dir="walkingpapers"/>
[15707]110 <ant antfile="build.xml" target="clean" dir="waydownloader"/>
[21186]111 <ant antfile="build.xml" target="clean" dir="wayselector"/>
[12780]112 <ant antfile="build.xml" target="clean" dir="wmsplugin"/>
[19991]113 <ant antfile="build.xml" target="clean" dir="wms-turbo-challenge2"/>
[12780]114 </target>
115 <target name="clean_install"></target>
116 <target name="install" depends="dist"></target>
[3779]117</project>
Note: See TracBrowser for help on using the repository browser.