Changeset 34409 in osm for applications/editors/josm


Ignore:
Timestamp:
2018-07-09T21:13:03+02:00 (7 years ago)
Author:
donvip
Message:

see #josm15560, see #josm16047 - fix JABX builds

Location:
applications/editors/josm/plugins
Files:
2 edited

Legend:

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

    r34387 r34409  
    2020    <property name="spotbugs-ant.jar"       location="../00_core_tools/spotbugs/spotbugs-ant.jar"/>
    2121    <property name="annotations.jar"        location="../00_core_tools/spotbugs/spotbugs-annotations.jar"/>
     22    <property name="plugin.tools.dir"       location="../00_tools"/>
    2223    <property name="plugin.build.dir"       location="build"/>
    2324    <property name="plugin.test.dir"        location="test"/>
     
    6970    <fileset id="plugin.requires.jars" dir="${plugin.dist.dir}" includes="nothing"/>
    7071
     72    <fileset id="jaxb.jars" dir="${plugin.tools.dir}/jaxb-ri/lib" includes="**/*.jar"/>
     73
    7174    <path id="plugin.classpath">
    7275        <pathelement location="${josm}"/>
     
    7780        </fileset>
    7881        <fileset refid="plugin.requires.jars"/>
     82        <fileset refid="jaxb.jars"/>
    7983    </path>
    8084
  • applications/editors/josm/plugins/opendata/build.xml

    r34384 r34409  
    6666    <target name="compile_neptune" depends="init, xjc_neptune">
    6767        <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>
    6973    </target>
    7074    <!--
     
    8387                <pathelement location="${ejml}"/>
    8488                <pathelement location="${geotools}"/>
     89                <fileset refid="jaxb.jars"/>
    8590            </classpath>
    8691            <compilerarg value="-Xlint:deprecation"/>
Note: See TracChangeset for help on using the changeset viewer.