Ignore:
Timestamp:
2015-11-15T15:20:17+01:00 (10 years ago)
Author:
donvip
Message:

[josm_importimageplugin] add a unit test for geotiff reading

File:
1 edited

Legend:

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

    r31114 r31746  
    1717    <import file="../build-common.xml"/>
    1818
    19         <!--
    20     **********************************************************
    21     ** compile - complies the source tree
    22     **********************************************************
    23     -->
    24         <target name="compile" depends="init">
    25                 <echo message="compiling sources for  ${plugin.jar} ... "/>
    26                 <javac srcdir="src" classpath="${josm}" debug="true" destdir="${plugin.build.dir}" includeantruntime="false">
    27             <classpath>
    28                 <pathelement location="${josm}"/>
    29                 <fileset dir="../log4j/lib">
    30                     <include name="**/*.jar"/>
    31                 </fileset>
    32                 <fileset dir="../jts/lib">
    33                     <include name="**/*.jar"/>
    34                 </fileset>
    35                 <fileset dir="../geotools/lib">
    36                     <include name="**/*.jar"/>
    37                 </fileset>
    38             </classpath>
    39                         <compilerarg value="-Xlint:deprecation"/>
    40                         <compilerarg value="-Xlint:unchecked"/>
    41                 </javac>
    42         </target>
    43        
     19        <fileset id="plugin.requires.jars" dir="${plugin.dist.dir}">
     20        <include name="log4j.jar"/>
     21        <include name="jts.jar"/>
     22        <include name="geotools.jar"/>
     23    </fileset>
     24
    4425</project>
Note: See TracChangeset for help on using the changeset viewer.