Changeset 14003 in osm for applications/editors/josm/plugins/cadastre-fr
- Timestamp:
- 2009-03-08T12:02:49+01:00 (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/cadastre-fr/build.xml
r13785 r14003 1 1 <project name="cadastre-fr" 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}" destdir="${plugin.build.dir}" debug="true"> 13 <include name="**/*.java" /> 12 <javac srcdir="src" classpath="${josm}" debug="false" destdir="${plugin.build.dir}"> 13 <compilerarg value="-Xlint:deprecation"/> 14 <compilerarg value="-Xlint:unchecked"/> 14 15 </javac> 15 16 </target> 16 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="Pieren"/> 24 <attribute name="Plugin-Class" value="cadastre_fr.CadastrePlugin"/> 25 <attribute name="Plugin-Date" value="${version.entry.commit.date}"/> 26 <attribute name="Plugin-Description" value="A special handler for the french land registry WMS server."/> 27 <attribute name="Plugin-Link" value="http://wiki.openstreetmap.org/wiki/FR:JOSM/Fr:Plugin/Cadastre"/> 28 <attribute name="Plugin-Mainversion" value="1465"/> 29 <attribute name="Plugin-Stage" value="60"/> 30 <attribute name="Plugin-Version" value="${version.entry.commit.revision}"/> 31 </manifest> 32 </jar> 33 </target> 34 <target name="revision"> 21 35 <exec append="false" output="REVISION" executable="svn" failifexecutionfails="false"> 22 36 <env key="LANG" value="C"/> … … 26 40 </exec> 27 41 <xmlproperty file="REVISION" prefix="version" keepRoot="false" collapseAttributes="true"/> 28 <delete file="REVISION"/> 29 <jar destfile="${plugin.jar}" basedir="${plugin.build.dir}"> 30 <manifest> 31 <attribute name="Plugin-Class" value="cadastre_fr.CadastrePlugin"/> 32 <attribute name="Plugin-Description" value="A special handler for the french land registry WMS server"/> 33 <attribute name="Plugin-Version" value="${version.entry.commit.revision}"/> 34 <attribute name="Plugin-Date" value="${version.entry.commit.date}"/> 35 <attribute name="Plugin-Stage" value="60"/> 36 <attribute name="Plugin-Mainversion" value="1280" /> 37 <attribute name="Author" value="Pieren <pieren3@gmail.com>"/> 38 </manifest> 39 </jar> 42 <delete file="REVISION"/> 40 43 </target> 41 44 <target name="clean"> 42 <delete dir="${plugin.build.dir}" /> 43 <delete file="${plugin.jar}" /> 45 <delete dir="${plugin.build.dir}"/> 46 <delete file="${plugin.jar}"/> 47 </target> 48 <target name="install" depends="dist"> 49 <property environment="env"/> 50 <condition property="josm.plugins.dir" value="${env.APPDATA}/JOSM/plugins" else="${user.home}/.josm/plugins"> 51 <and> 52 <os family="windows"/> 53 </and> 54 </condition> 55 <copy file="${plugin.jar}" todir="${josm.plugins.dir}"/> 44 56 </target> 45 57 </project>
Note:
See TracChangeset
for help on using the changeset viewer.