Changeset 32678 in osm
- Timestamp:
- 2016-07-21T02:36:09+02:00 (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/build-common.xml
r32673 r32678 16 16 <property name="josm.test.build.dir" location="../../core/test/build"/> 17 17 <property name="groovy.jar" location="../00_core_tools/groovy-all-2.4.7.jar"/> 18 <property name="error_prone_ant.jar" location="../00_core_tools/error_prone_ant-2.0.9.jar"/> 18 19 <property name="checkstyle.jar" location="../00_core_tools/checkstyle/checkstyle-7.0-all.jar"/> 19 20 <property name="findbugs-ant.jar" location="../00_core_tools/findbugs/findbugs-ant.jar"/> … … 25 26 <!-- this is the directory where the plugin jar is copied to --> 26 27 <property name="plugin.dist.dir" location="../../dist"/> 27 <property name="ant.build.javac.target" value="1. 7"/>28 <property name="ant.build.javac.source" value="1. 7"/>28 <property name="ant.build.javac.target" value="1.8"/> 29 <property name="ant.build.javac.source" value="1.8"/> 29 30 <property name="plugin.jar" location="${plugin.dist.dir}/${ant.project.name}.jar"/> 30 31 … … 71 72 <target name="compile" depends="init, pre-compile" unless="skip-compile"> 72 73 <echo message="compiling sources for ${plugin.jar} ..."/> 73 <javac srcdir="src" debug="true" destdir="${plugin.build.dir}" includeantruntime="false" encoding="UTF-8"> 74 <javac compiler="com.google.errorprone.ErrorProneAntCompilerAdapter" srcdir="src" debug="true" destdir="${plugin.build.dir}" includeantruntime="false" encoding="UTF-8"> 75 <compilerclasspath> 76 <pathelement location="${error_prone_ant.jar}"/> 77 </compilerclasspath> 74 78 <compilerarg value="-Xlint:deprecation"/> 75 79 <compilerarg value="-Xlint:unchecked"/>
Note:
See TracChangeset
for help on using the changeset viewer.