Ignore:
Timestamp:
2014-01-07T22:28:02+01:00 (11 years ago)
Author:
malcolmh
Message:

save

File:
1 edited

Legend:

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

    r30188 r30190  
    22  <property name="src" location="src"/>
    33  <property name="build" location="build"/>
    4   <property name="dist" location="dist"/>
     4  <property name="jarfile" location="./js57toosm.jar"/>
    55
    66  <target name="init">
     
    1313
    1414  <target name="dist" depends="compile" description="generate the distribution" >
    15     <jar jarfile="./js57toosm.jar" basedir="${build}" >
     15    <jar jarfile="${jarfile}" basedir="${build}" >
    1616      <manifest>
    17         <attribute name="Main-Class" value="Js57toosm"/>
     17        <attribute name="Main-Class" value="js57toosm.Js57toosm"/>
     18        <attribute name="Class-Path" value="$jarfile"/>
    1819      </manifest>
    1920    </jar>
     
    2223  <target name="clean" description="clean up" >
    2324    <delete dir="${build}"/>
    24     <delete dir="${dist}"/>
    25     <delete file="./js57toosm.jar"/>
     25    <delete file="${jarfile}"/>
    2626  </target>
    2727</project>
Note: See TracChangeset for help on using the changeset viewer.