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/terracer/build.xml

    r13587 r14003  
    11<project name="terracer" default="dist" basedir=".">
    2     <property name="josm"                   location="../../core/dist/josm-custom.jar" />
     2    <property name="josm"                   location="../../core/dist/josm-custom.jar"/>
    33    <property name="plugin.dist.dir"        value="../../dist"/>
    44    <property name="plugin.build.dir"       value="build"/>
     
    1010    <target name="compile" depends="init">
    1111        <echo message="creating ${plugin.jar}"/>
    12         <javac srcdir="src" classpath="${josm}" debug="true" destdir="${plugin.build.dir}">
     12        <javac srcdir="src" classpath="${josm}" debug="false" destdir="${plugin.build.dir}">
    1313            <compilerarg value="-Xlint:deprecation"/>
    1414            <compilerarg value="-Xlint:unchecked"/>
    15             <include name="**/*.java" />
    1615        </javac>
    1716    </target>
    18     <target name="dist" depends="compile">
    19         <copy todir="${plugin.build.dir}/images" >
    20             <fileset dir="images" />
     17    <target name="dist" depends="compile,revision">
     18        <copy todir="${plugin.build.dir}/images">
     19            <fileset dir="images"/>
    2120        </copy>
     21        <jar destfile="${plugin.jar}" basedir="${plugin.build.dir}">
     22            <manifest>
     23                <attribute name="Author" value="Matt Amos"/>
     24                <attribute name="Plugin-Class" value="terracer.TerracerPlugin"/>
     25                <attribute name="Plugin-Date" value="${version.entry.commit.date}"/>
     26                <attribute name="Plugin-Description" value="Make terraced houses out of single blocks."/>
     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">
    2233        <exec append="false" output="REVISION" executable="svn" failifexecutionfails="false">
    2334            <env key="LANG" value="C"/>
     
    2839        <xmlproperty file="REVISION" prefix="version" keepRoot="false" collapseAttributes="true"/>
    2940        <delete file="REVISION"/>
    30         <jar destfile="${plugin.jar}" basedir="${plugin.build.dir}">
    31             <manifest>
    32                 <attribute name="Plugin-Class" value="terracer.TerracerPlugin" />
    33                 <attribute name="Plugin-Description" value="Easy creation of individual terraced houses." />
    34                 <attribute name="Plugin-Version" value="${version.entry.commit.revision}" />
    35                 <attribute name="Plugin-Date" value="${version.entry.commit.date}"/>
    36                 <attribute name="Plugin-Mainversion" value="1280" />
    37             </manifest>
    38         </jar>
    3941    </target>
    4042    <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}"/>
    4354    </target>
    4455</project>
Note: See TracChangeset for help on using the changeset viewer.