Changeset 18080 in osm for applications
- Timestamp:
- 2009-10-11T11:54:12+02:00 (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/multipoly/build.xml
r18079 r18080 6 6 <property name="josm" location="../../core/dist/josm-custom.jar" /> 7 7 <property name="plugin.build.dir" value="build"/> 8 <property name="plugin.dist.dir" value=" dist"/>8 <property name="plugin.dist.dir" value="../../dist"/> 9 9 <property name="plugin.name" value="${ant.project.name}"/> 10 <property name="plugin.jar" value=" dist/${plugin.name}.jar"/>10 <property name="plugin.jar" value="${plugin.dist.dir}/${plugin.name}.jar"/> 11 11 12 12 <!-- There's no josm.jar in the svn, so point "josm" to a local copy of your JOSM binary --> … … 16 16 17 17 <target name="init"> 18 <mkdir dir=" build"></mkdir>19 <mkdir dir=" dist"></mkdir>18 <mkdir dir="${plugin.build.dir}"></mkdir> 19 <mkdir dir="${plugin.dist.dir}"></mkdir> 20 20 </target> 21 21 … … 63 63 64 64 <target name="install" depends="dist"> 65 <copy file="${plugin.jar}" todir="${plugins}"/>66 </target>67 <target name="install" depends="dist">68 65 <property environment="env"/> 69 66 <condition property="josm.plugins.dir" value="${env.APPDATA}/JOSM/plugins" else="${user.home}/.josm/plugins">
Note:
See TracChangeset
for help on using the changeset viewer.