Ignore:
Timestamp:
2015-10-25T01:09:59+02:00 (10 years ago)
Author:
donvip
Message:

[joms_plugins] use apache-commons plugin

File:
1 edited

Legend:

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

    r31655 r31677  
    88    <property name="plugin.canloadatruntime" value="true"/>
    99    <property name="plugin.link" value="http://wiki.openstreetmap.org/wiki/JOSM/Plugins/OpenData"/>
    10     <property name="plugin.requires" value="jts;geotools;utilsplugin2"/>
     10    <property name="plugin.requires" value="apache-commons;jts;geotools;utilsplugin2"/>
    1111
    1212    <!-- ** include targets that all plugins have in common ** -->
     
    1414   
    1515    <fileset id="plugin.requires.jars" dir="${plugin.dist.dir}">
     16        <include name="apache-commons.jar"/>
    1617        <include name="jts.jar"/>
    1718        <include name="geotools.jar"/>
     
    1920    </fileset>
    2021
     22    <property name="apache-commons" location="${plugin.dist.dir}/apache-commons.jar"/>
    2123    <property name="jts" location="${plugin.dist.dir}/jts.jar"/>
    2224    <property name="geotools" location="${plugin.dist.dir}/geotools.jar"/>
    2325   
    24     <!--
    25     **********************************************************
    26     ** compile_lang3 - compiles Apache Commons Lang 3 needed classes
    27     **********************************************************
    28     -->
    29     <target name="compile_lang3" depends="init">
    30         <echo message="compiling Apache Commons Lang 3 ... "/>
    31         <javac srcdir="includes/org/apache/commons/lang3" debug="false" destdir="${plugin.build.dir}" includeAntRuntime="false" encoding="ISO-8859-1" />
    32     </target>
    3326    <!--
    3427    **********************************************************
     
    8679    **********************************************************
    8780    -->
    88     <target name="compile" depends="init, compile_lang3, compile_poi, compile_jopendoc, compile_neptune, compile_j7zip">
     81    <target name="compile" depends="init, compile_poi, compile_jopendoc, compile_neptune, compile_j7zip">
    8982        <echo message="compiling sources for ${plugin.jar} ... "/>
    9083        <javac srcdir="src" debug="true" destdir="${plugin.build.dir}" includeAntRuntime="false" encoding="UTF-8">
     
    9285                <pathelement path="${plugin.build.dir}"/>
    9386                <pathelement location="${josm}"/>
     87                <pathelement location="${apache-commons}"/>
    9488                <pathelement location="${jts}"/>
    9589                <pathelement location="${geotools}"/>
Note: See TracChangeset for help on using the changeset viewer.