Changeset 34409 in osm for applications/editors/josm
- Timestamp:
- 2018-07-09T21:13:03+02:00 (7 years ago)
- Location:
- applications/editors/josm/plugins
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/build-common.xml
r34387 r34409 20 20 <property name="spotbugs-ant.jar" location="../00_core_tools/spotbugs/spotbugs-ant.jar"/> 21 21 <property name="annotations.jar" location="../00_core_tools/spotbugs/spotbugs-annotations.jar"/> 22 <property name="plugin.tools.dir" location="../00_tools"/> 22 23 <property name="plugin.build.dir" location="build"/> 23 24 <property name="plugin.test.dir" location="test"/> … … 69 70 <fileset id="plugin.requires.jars" dir="${plugin.dist.dir}" includes="nothing"/> 70 71 72 <fileset id="jaxb.jars" dir="${plugin.tools.dir}/jaxb-ri/lib" includes="**/*.jar"/> 73 71 74 <path id="plugin.classpath"> 72 75 <pathelement location="${josm}"/> … … 77 80 </fileset> 78 81 <fileset refid="plugin.requires.jars"/> 82 <fileset refid="jaxb.jars"/> 79 83 </path> 80 84 -
applications/editors/josm/plugins/opendata/build.xml
r34384 r34409 66 66 <target name="compile_neptune" depends="init, xjc_neptune"> 67 67 <echo message="compiling Neptune ... "/> 68 <javac srcdir="includes/neptune" debug="false" destdir="${plugin.build.dir}" includeAntRuntime="false" encoding="UTF-8" /> 68 <javac srcdir="includes/neptune" debug="false" destdir="${plugin.build.dir}" includeAntRuntime="false" encoding="UTF-8"> 69 <classpath> 70 <fileset refid="jaxb.jars"/> 71 </classpath> 72 </javac> 69 73 </target> 70 74 <!-- … … 83 87 <pathelement location="${ejml}"/> 84 88 <pathelement location="${geotools}"/> 89 <fileset refid="jaxb.jars"/> 85 90 </classpath> 86 91 <compilerarg value="-Xlint:deprecation"/>
Note:
See TracChangeset
for help on using the changeset viewer.