Changeset 14003 in osm for applications/editors/josm/plugins/lakewalker
- Timestamp:
- 2009-03-08T12:02:49+01:00 (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/lakewalker/build.xml
r12780 r14003 1 1 <project name="lakewalker" default="dist" basedir="."> 2 <!-- josm "user home" directory depends on the platform used (windows has a different place than unix/linux) --> 3 <property environment="env"/> 4 <condition property="josm.home.dir" value="${env.APPDATA}/JOSM" else="${user.home}/.josm"> 5 <and> 6 <os family="windows"/> 7 </and> 8 </condition> 9 <!-- compilation properties --> 10 <property name="josm.build.dir" value="../../core"/> 11 <property name="josm.plugins.dir" value="${josm.home.dir}/plugins"/> 12 <property name="josm" location="../../core/dist/josm-custom.jar" /> 13 <property name="plugin.build.dir" value="build"/> 14 <property name="plugin.dist.dir" value="../../dist"/> 15 <property name="plugin.name" value="${ant.project.name}"/> 16 <property name="plugin.jar" value="../../dist/${plugin.name}.jar"/> 17 <property name="josm" location="../../core/dist/josm-custom.jar" /> 2 <property name="josm" location="../../core/dist/josm-custom.jar"/> 3 <property name="plugin.dist.dir" value="../../dist"/> 4 <property name="plugin.build.dir" value="build"/> 5 <property name="plugin.jar" value="${plugin.dist.dir}/${ant.project.name}.jar"/> 18 6 <property name="ant.build.javac.target" value="1.5"/> 19 7 <target name="init"> … … 22 10 <target name="compile" depends="init"> 23 11 <echo message="creating ${plugin.jar}"/> 24 < mkdir dir="build"></mkdir>25 <javac srcdir="src" classpath="${josm}" destdir="build" debug="true">26 < 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"/> 27 15 </javac> 28 <mkdir dir="build/images"></mkdir> 29 <copy todir="build"> 30 <fileset dir="${plugin.build.dir}" casesensitive="yes"> 31 <filename name="**/*.class"/> 32 </fileset> 16 </target> 17 <target name="dist" depends="compile,revision"> 18 <copy todir="${plugin.build.dir}/images"> 19 <fileset dir="images"/> 33 20 </copy> 34 <copy todir="build/images"> 35 <fileset dir="images" casesensitive="yes"> 36 <filename name="**/*.png"/> 37 </fileset> 38 </copy> 21 <jar destfile="${plugin.jar}" basedir="${plugin.build.dir}"> 22 <manifest> 23 <attribute name="Author" value="Brent Easton, Jason Reid"/> 24 <attribute name="Main-Class" value="org.openstreetmap.josm.plugins.lakewalker.LakewalkerApp"/> 25 <attribute name="Plugin-Class" value="org.openstreetmap.josm.plugins.lakewalker.LakewalkerPlugin" /> 26 <attribute name="Plugin-Date" value="${version.entry.commit.date}"/> 27 <attribute name="Plugin-Description" value="Helps vectorizing WMS images." /> 28 <attribute name="Plugin-Mainversion" value="1465"/> 29 <attribute name="Plugin-Version" value="${version.entry.commit.revision}"/> 30 </manifest> 31 </jar> 39 32 </target> 40 <target name=" dist" depends="compile">33 <target name="revision"> 41 34 <exec append="false" output="REVISION" executable="svn" failifexecutionfails="false"> 42 35 <env key="LANG" value="C"/> … … 47 40 <xmlproperty file="REVISION" prefix="version" keepRoot="false" collapseAttributes="true"/> 48 41 <delete file="REVISION"/> 49 <jar destfile="${plugin.jar}" basedir="build">50 <manifest>51 <attribute name="Plugin-Class" value="org.openstreetmap.josm.plugins.lakewalker.LakewalkerPlugin" />52 <attribute name="Plugin-Description" value="Interface to Lakewalker module" />53 <attribute name="Plugin-Version" value="${version.entry.commit.revision}"/>54 <attribute name="Plugin-Mainversion" value="1180"/>55 <attribute name="Plugin-Date" value="${version.entry.commit.date}"/>56 <attribute name="Author" value="Brent Easton <b.easton@uws.edu.au>, Jason Reid <jrreid@ucalgary.ca>"/>57 <attribute name="Main-Class" value="org.openstreetmap.josm.plugins.lakewalker.LakewalkerApp"/>58 </manifest>59 </jar>60 42 </target> 61 43 <target name="clean"> 62 <delete dir="${plugin.build.dir}" 63 <delete file="${plugin.jar}" 44 <delete dir="${plugin.build.dir}"/> 45 <delete file="${plugin.jar}"/> 64 46 </target> 65 47 <target name="install" depends="dist"> 48 <property environment="env"/> 49 <condition property="josm.plugins.dir" value="${env.APPDATA}/JOSM/plugins" else="${user.home}/.josm/plugins"> 50 <and> 51 <os family="windows"/> 52 </and> 53 </condition> 66 54 <copy file="${plugin.jar}" todir="${josm.plugins.dir}"/> 67 <mkdir dir="${josm.plugins.dir}/Lakewalker/IR1"></mkdir>68 <mkdir dir="${josm.plugins.dir}/Lakewalker/IR2"></mkdir>69 <mkdir dir="${josm.plugins.dir}/Lakewalker/IR3"></mkdir>70 55 </target> 71 56 </project>
Note:
See TracChangeset
for help on using the changeset viewer.