Changeset 14003 in osm for applications/editors/josm/plugins/utilsplugin
- Timestamp:
- 2009-03-08T12:02:49+01:00 (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/utilsplugin/build.xml
r13723 r14003 1 1 <project name="utilsplugin" default="dist" basedir="."> 2 <property name="josm" location="../../core/dist/josm-custom.jar" 2 <property name="josm" location="../../core/dist/josm-custom.jar"/> 3 3 <property name="plugin.dist.dir" value="../../dist"/> 4 4 <property name="plugin.build.dir" value="build"/> … … 10 10 <target name="compile" depends="init"> 11 11 <echo message="creating ${plugin.jar}"/> 12 <javac srcdir="src" classpath="${josm}" de stdir="${plugin.build.dir}" debug="true">12 <javac srcdir="src" classpath="${josm}" debug="false" destdir="${plugin.build.dir}"> 13 13 <compilerarg value="-Xlint:deprecation"/> 14 14 <compilerarg value="-Xlint:unchecked"/> 15 15 </javac> 16 16 </target> 17 <target name="dist" depends="compile ">17 <target name="dist" depends="compile,revision"> 18 18 <copy todir="${plugin.build.dir}/images"> 19 19 <fileset dir="images"/> 20 20 </copy> 21 <jar destfile="${plugin.jar}" basedir="${plugin.build.dir}"> 22 <manifest> 23 <attribute name="Author" value="Martijn van Oosterhout"/> 24 <attribute name="Plugin-Class" value="UtilsPlugin.UtilsPlugin"/> 25 <attribute name="Plugin-Date" value="${version.entry.commit.date}"/> 26 <attribute name="Plugin-Description" value="Several utilities that make your life easier: e.g. simplify way, join areas, jump to position."/> 27 <attribute name="Plugin-Mainversion" value="1465"/> 28 <attribute name="Plugin-Version" value="${version.entry.commit.revision}"/> 29 </manifest> 30 </jar> 31 </target> 32 <target name="revision"> 21 33 <exec append="false" output="REVISION" executable="svn" failifexecutionfails="false"> 22 34 <env key="LANG" value="C"/> … … 27 39 <xmlproperty file="REVISION" prefix="version" keepRoot="false" collapseAttributes="true"/> 28 40 <delete file="REVISION"/> 29 <jar destfile="${plugin.jar}" basedir="${plugin.build.dir}">30 <manifest>31 <attribute name="Plugin-Class" value="UtilsPlugin.UtilsPlugin"/>32 <attribute name="Plugin-Description" value="Useful JOSM utilities"/>33 <attribute name="Plugin-Version" value="${version.entry.commit.revision}"/>34 <attribute name="Plugin-Mainversion" value="1373"/>35 <attribute name="Plugin-Date" value="${version.entry.commit.date}"/>36 <attribute name="Author" value="Martijn van Oosterhout"/>37 </manifest>38 </jar>39 41 </target> 40 42 <target name="clean"> 41 <delete dir="${plugin.build.dir}" /> 42 <delete file="${plugin.jar}" /> 43 <delete dir="${plugin.build.dir}"/> 44 <delete file="${plugin.jar}"/> 45 </target> 46 <target name="install" depends="dist"> 47 <property environment="env"/> 48 <condition property="josm.plugins.dir" value="${env.APPDATA}/JOSM/plugins" else="${user.home}/.josm/plugins"> 49 <and> 50 <os family="windows"/> 51 </and> 52 </condition> 53 <copy file="${plugin.jar}" todir="${josm.plugins.dir}"/> 43 54 </target> 44 55 </project>
Note:
See TracChangeset
for help on using the changeset viewer.