Changeset 34132 in osm for applications/editors/josm
- Timestamp:
- 2018-03-26T21:36:14+02:00 (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/opendata/build.xml
r34116 r34132 44 44 <javac srcdir="includes/org/jopendocument" debug="false" destdir="${plugin.build.dir}" includeAntRuntime="false" encoding="ISO-8859-1" > 45 45 <classpath> 46 <!-- JDOM is required andembedded 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"/> 48 48 <pathelement location="${apache-commons}"/> 49 49 </classpath> … … 100 100 </exec> 101 101 </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> 102 122 </project>
Note:
See TracChangeset
for help on using the changeset viewer.