Changeset 29005 in osm for applications/editors/josm/plugins/build-common.xml
- Timestamp:
- 2012-11-27T20:47:41+01:00 (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/build-common.xml
r29004 r29005 51 51 <!-- 52 52 ********************************************************** 53 ** dist - creates the plugin jar 54 ********************************************************** 55 --> 56 <target name="dist" depends="compile,revision"> 57 <echo message="creating ${ant.project.name}.jar ... "/> 53 ** setup-dist - copies files for distribution 54 ********************************************************** 55 --> 56 <target name="setup-dist-default"> 58 57 <copy todir="${plugin.build.dir}/resources" failonerror="no" includeemptydirs="no"> 59 58 <fileset dir="resources"/> … … 72 71 </fileset> 73 72 </copy> 73 </target> 74 <target name="setup-dist"> 75 <antcall target="setup-dist-default" /> 76 </target> 77 <!-- 78 ********************************************************** 79 ** dist - creates the plugin jar 80 ********************************************************** 81 --> 82 <target name="dist" depends="compile,revision"> 83 <echo message="creating ${ant.project.name}.jar ... "/> 84 <antcall target="setup-dist" /> 74 85 <delete file="MANIFEST" failonerror="no"/> 75 86 <manifest file="MANIFEST" mode="update">
Note:
See TracChangeset
for help on using the changeset viewer.