Ignore:
Timestamp:
2009-03-08T12:02:49+01:00 (15 years ago)
Author:
stoecker
Message:

cleanup build scripts and manifests

File:
1 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/lakewalker/build.xml

    r12780 r14003  
    11<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"/>
    186    <property name="ant.build.javac.target" value="1.5"/>
    197    <target name="init">
     
    2210    <target name="compile" depends="init">
    2311        <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"/>
    2715        </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"/>
    3320        </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>
    3932    </target>
    40     <target name="dist" depends="compile">
     33    <target name="revision">
    4134        <exec append="false" output="REVISION" executable="svn" failifexecutionfails="false">
    4235            <env key="LANG" value="C"/>
     
    4740        <xmlproperty file="REVISION" prefix="version" keepRoot="false" collapseAttributes="true"/>
    4841        <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 &lt;b.easton@uws.edu.au>, Jason Reid &lt;jrreid@ucalgary.ca>"/>
    57                 <attribute name="Main-Class" value="org.openstreetmap.josm.plugins.lakewalker.LakewalkerApp"/>
    58             </manifest>
    59         </jar>
    6042    </target>
    6143    <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}"/>
    6446    </target>
    6547    <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>
    6654        <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>
    7055    </target>
    7156</project>
Note: See TracChangeset for help on using the changeset viewer.