Ignore:
Timestamp:
2013-07-02T00:57:43+02:00 (13 years ago)
Author:
pieren
Message:

add new geotools dependencies

File:
1 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/cadastre-fr/build.xml

    r29596 r29734  
    1515    <property name="plugin.link" value="http://wiki.openstreetmap.org/wiki/FR:JOSM/Fr:Plugin/Cadastre"/>
    1616    <property name="plugin.stage" value="60"/>
     17    <property name="plugin.requires" value="jts;geotools"/>
    1718
    1819    <!-- ** include targets that all plugins have in common ** -->
    1920    <import file="../build-common.xml"/>
     21
     22    <property name="jts" location="../../dist/jts.jar"/>
     23    <property name="geotools" location="../../dist/geotools.jar"/>
     24
     25    <!--
     26    **********************************************************
     27    ** compile - compiles the source tree
     28    **********************************************************
     29    -->
     30    <target name="compile">
     31        <echo message="compiling sources for  ${plugin.jar} ... "/>
     32        <javac srcdir="src" debug="true" destdir="${plugin.build.dir}" includeAntRuntime="false" encoding="UTF-8">
     33            <classpath>
     34                <pathelement path="${plugin.build.dir}"/>
     35                <pathelement location="${josm}"/>
     36                <pathelement location="${jts}"/>
     37                <pathelement location="${geotools}"/>
     38            </classpath>
     39            <compilerarg value="-Xlint:deprecation"/>
     40            <compilerarg value="-Xlint:unchecked"/>
     41        </javac>
     42    </target>
    2043</project>
Note: See TracChangeset for help on using the changeset viewer.