Ignore:
Timestamp:
2018-03-26T21:36:14+02:00 (6 years ago)
Author:
donvip
Message:

fix build

File:
1 edited

Legend:

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

    r34116 r34132  
    4444        <javac srcdir="includes/org/jopendocument" debug="false" destdir="${plugin.build.dir}" includeAntRuntime="false" encoding="ISO-8859-1" >
    4545            <classpath>
    46                 <!-- JDOM is required and embedded in geotools jar -->
    47                 <pathelement location="${geotools}"/>
     46                <!-- JDOM is required in an older version than the one embedded in geotools jar -->
     47                <pathelement location="lib/jdom-1.1.3.jar"/>
    4848                <pathelement location="${apache-commons}"/>
    4949            </classpath>
     
    100100        </exec>
    101101    </target>
     102
     103        <target name="javadoc">
     104        <javadoc destdir="${plugin.doc.dir}"
     105                encoding="UTF-8"
     106                windowtitle="JOSM-${ant.project.name}"
     107                use="true"
     108                private="true"
     109                linksource="true"
     110                author="false">
     111            <sourcepath>
     112                <pathelement location="${plugin.src.dir}"/>
     113                <pathelement location="includes"/>
     114            </sourcepath>
     115                <classpath refid="plugin.classpath"/>
     116            <link href="https://docs.oracle.com/javase/8/docs/api"/>
     117            <link href="https://josm.openstreetmap.de/doc"/>
     118            <doctitle><![CDATA[<h2>JOSM-${ant.project.name} - Javadoc</h2>]]></doctitle>
     119            <bottom><![CDATA[<a href="https://josm.openstreetmap.de/wiki/Plugins">JOSM Plugins</a>]]></bottom>
     120        </javadoc>
     121    </target>
    102122</project>
Note: See TracChangeset for help on using the changeset viewer.