Ignore:
Timestamp:
2014-10-04T16:12:51+02:00 (10 years ago)
Author:
donvip
Message:

[josm_opendata] remove generated source files

File:
1 edited

Legend:

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

    r30562 r30699  
    2525    <property name="ant.build.javac.source" value="1.7"/>
    2626    <property name="plugin.jar"             location="${plugin.dist.dir}/${ant.project.name}.jar"/>
     27
     28    <!-- For Windows-specific stuff -->
     29    <condition property="isWindows">
     30        <os family="Windows"/>
     31    </condition>
     32    <target name="-jaxb_win" if="isWindows">
     33        <property name="xjc" value="${java.home}\..\bin\xjc.exe" />
     34    </target>
     35    <target name="-jaxb_nix" unless="isWindows">
     36        <property name="xjc" value="${java.home}/../bin/xjc" />
     37    </target>
    2738
    2839    <!--
Note: See TracChangeset for help on using the changeset viewer.