Index: applications/editors/josm/plugins/build-common.xml
===================================================================
--- applications/editors/josm/plugins/build-common.xml	(revision 34408)
+++ applications/editors/josm/plugins/build-common.xml	(revision 34409)
@@ -20,4 +20,5 @@
     <property name="spotbugs-ant.jar"       location="../00_core_tools/spotbugs/spotbugs-ant.jar"/>
     <property name="annotations.jar"        location="../00_core_tools/spotbugs/spotbugs-annotations.jar"/>
+    <property name="plugin.tools.dir"       location="../00_tools"/>
     <property name="plugin.build.dir"       location="build"/>
     <property name="plugin.test.dir"        location="test"/>
@@ -69,4 +70,6 @@
     <fileset id="plugin.requires.jars" dir="${plugin.dist.dir}" includes="nothing"/>
 
+    <fileset id="jaxb.jars" dir="${plugin.tools.dir}/jaxb-ri/lib" includes="**/*.jar"/>
+
     <path id="plugin.classpath">
         <pathelement location="${josm}"/>
@@ -77,4 +80,5 @@
         </fileset>
         <fileset refid="plugin.requires.jars"/>
+        <fileset refid="jaxb.jars"/>
     </path>
 
Index: applications/editors/josm/plugins/opendata/build.xml
===================================================================
--- applications/editors/josm/plugins/opendata/build.xml	(revision 34408)
+++ applications/editors/josm/plugins/opendata/build.xml	(revision 34409)
@@ -66,5 +66,9 @@
     <target name="compile_neptune" depends="init, xjc_neptune">
         <echo message="compiling Neptune ... "/>
-        <javac srcdir="includes/neptune" debug="false" destdir="${plugin.build.dir}" includeAntRuntime="false" encoding="UTF-8" />
+        <javac srcdir="includes/neptune" debug="false" destdir="${plugin.build.dir}" includeAntRuntime="false" encoding="UTF-8">
+            <classpath>
+                <fileset refid="jaxb.jars"/>
+            </classpath>
+        </javac>
     </target>
     <!--
@@ -83,4 +87,5 @@
                 <pathelement location="${ejml}"/>
                 <pathelement location="${geotools}"/>
+                <fileset refid="jaxb.jars"/>
             </classpath>
             <compilerarg value="-Xlint:deprecation"/>
