Changeset 32368 in osm for applications/editors/josm/plugins/seachart/js57toosm
- Timestamp:
- 2016-06-23T00:40:31+02:00 (9 years ago)
- Location:
- applications/editors/josm/plugins/seachart/js57toosm
- Files:
-
- 1 deleted
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/seachart/js57toosm
-
Property svn:ignore
set to
build
js57toosm.jar
-
Property svn:ignore
set to
-
applications/editors/josm/plugins/seachart/js57toosm/build.xml
r31768 r32368 1 1 <project name="js57toosm" default="dist" basedir="."> 2 2 <property name="src" location="src"/> 3 <property name="srcmain" location="../src"/> 3 4 <property name="build" location="build"/> 4 5 <property name="jarfile" location="./js57toosm.jar"/> 5 <property name="lang.dir" value=" /usr/local/bin/commons-lang3-3.4/"/>6 <property name="lang.dir" value="../libs/"/> 6 7 <path id="classpath"> 7 8 <fileset dir="${lang.dir}" includes="**/commons-lang3-3.4.jar"/> 8 9 </path> 9 10 10 11 <target name="init"> 11 12 <mkdir dir="${build}"/> 12 13 </target> 13 14 14 15 <target name="compile" depends="init" description="compile the source"> 15 <javac includeantruntime="false" srcdir="${src}" destdir="${build}" classpathref="classpath" encoding="UTF-8" /> 16 <javac includeantruntime="false" sourcepath="${srcmain}" srcdir="${src}" destdir="${build}" classpathref="classpath" encoding="UTF-8" /> 16 17 </target> 17 18 … … 25 26 </jar> 26 27 </target> 27 28 28 29 <target name="clean" description="clean up"> 29 30 <delete dir="${build}"/>
Note:
See TracChangeset
for help on using the changeset viewer.