Ignore:
Timestamp:
2015-10-21T11:34:01+02:00 (10 years ago)
Author:
malcolmh
Message:

Multipolygon processing

File:
1 edited

Legend:

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

    r31598 r31659  
    33  <property name="build" location="build"/>
    44  <property name="jarfile" location="./js57toosm.jar"/>
    5   <property name="ant.build.javac.target" value="1.7"/>
    6   <property name="ant.build.javac.source" value="1.7"/>
    75  <property name="lang.dir" value="/usr/local/bin/commons-lang3-3.4/"/>
    8      
     6  <path id="classpath">
     7    <fileset dir="${lang.dir}" includes="**/commons-lang3-3.4.jar"/>
     8  </path>
     9 
    910  <target name="init">
    1011    <mkdir dir="${build}"/>
    1112  </target>
    12 
    13   <target name="compile" depends="init" description="compile the source " >
    14     <javac includeantruntime="false" srcdir="${src}" destdir="${build}" encoding="UTF-8"/>
     13 
     14  <target name="compile" depends="init" description="compile the source">
     15    <javac includeantruntime="false" srcdir="${src}" destdir="${build}" classpathref="classpath" encoding="UTF-8" />
    1516  </target>
    16 
    17   <target name="dist" depends="compile" description="generate the distribution" >
     17 
     18  <target name="dist" depends="compile" description="generate the distribution">
    1819    <jar jarfile="${jarfile}" basedir="${build}" >
    1920      <manifest>
    2021        <attribute name="Main-Class" value="js57toosm.Js57toosm"/>
    21         <attribute name="Class-Path" value="$jarfile"/>
     22        <attribute name="Class-Path" value="${jarfile}"/>
    2223      </manifest>
    2324      <zipgroupfileset dir="${lang.dir}" includes="**/commons-lang3-3.4.jar" />
    2425    </jar>
    2526  </target>
    26 
    27   <target name="clean" description="clean up" >
     27 
     28  <target name="clean" description="clean up">
    2829    <delete dir="${build}"/>
    2930    <delete file="${jarfile}"/>
Note: See TracChangeset for help on using the changeset viewer.