Changeset 30190 in osm for applications/editors/josm/plugins/smed2/js57toosm
- Timestamp:
- 2014-01-07T22:28:02+01:00 (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/smed2/js57toosm/build.xml
r30188 r30190 2 2 <property name="src" location="src"/> 3 3 <property name="build" location="build"/> 4 <property name=" dist"location="dist"/>4 <property name="jarfile" location="./js57toosm.jar"/> 5 5 6 6 <target name="init"> … … 13 13 14 14 <target name="dist" depends="compile" description="generate the distribution" > 15 <jar jarfile=" ./js57toosm.jar" basedir="${build}" >15 <jar jarfile="${jarfile}" basedir="${build}" > 16 16 <manifest> 17 <attribute name="Main-Class" value="Js57toosm"/> 17 <attribute name="Main-Class" value="js57toosm.Js57toosm"/> 18 <attribute name="Class-Path" value="$jarfile"/> 18 19 </manifest> 19 20 </jar> … … 22 23 <target name="clean" description="clean up" > 23 24 <delete dir="${build}"/> 24 <delete dir="${dist}"/> 25 <delete file="./js57toosm.jar"/> 25 <delete file="${jarfile}"/> 26 26 </target> 27 27 </project>
Note:
See TracChangeset
for help on using the changeset viewer.