Changeset 30699 in osm for applications/editors/josm
- Timestamp:
- 2014-10-04T16:12:51+02:00 (10 years ago)
- Location:
- applications/editors/josm/plugins
- Files:
-
- 2 deleted
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/build-common.xml
r30562 r30699 25 25 <property name="ant.build.javac.source" value="1.7"/> 26 26 <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> 27 38 28 39 <!-- -
applications/editors/josm/plugins/opendata/build.xml
r30573 r30699 77 77 ********************************************************** 78 78 --> 79 <target name="compile_neptune" depends="init ">79 <target name="compile_neptune" depends="init, xjc_neptune"> 80 80 <echo message="compiling Neptune ... "/> 81 81 <javac srcdir="includes/neptune" debug="false" destdir="${plugin.build.dir}" includeAntRuntime="false" encoding="UTF-8" /> … … 100 100 </target> 101 101 102 <taskdef name="xjc" classname="com.sun.tools.xjc.XJCTask"> 103 <classpath> 104 <fileset dir="lib/jaxb" includes="*.jar" /> 105 </classpath> 106 </taskdef> 107 108 <target name="xjc_neptune"> 109 <xjc schema="resources/neptune/neptune.xsd" destdir="includes" package="neptune" target="2.1" /> 102 <target name="xjc_neptune" depends="init, -jaxb_win, -jaxb_nix" unless="jaxb.notRequired"> 103 <exec executable="${xjc}" failonerror="true"> 104 <arg value="-d"/> 105 <arg value="includes"/> 106 <arg value="-p"/> 107 <arg value="neptune"/> 108 <arg value="-encoding"/> 109 <arg value="UTF-8"/> 110 <arg value="resources/neptune/neptune.xsd"/> 111 </exec> 110 112 </target> 111 113 </project>
Note:
See TracChangeset
for help on using the changeset viewer.