Changeset 32777 in osm
- Timestamp:
- 2016-08-06T04:33:38+02:00 (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/build-common.xml
r32766 r32777 29 29 <property name="ant.build.javac.source" value="1.8"/> 30 30 <property name="plugin.jar" location="${plugin.dist.dir}/${ant.project.name}.jar"/> 31 <property name="javac.compiler" value="com.google.errorprone.ErrorProneAntCompilerAdapter" /> 31 32 32 33 <!-- For Windows-specific stuff --> … … 72 73 <target name="compile" depends="init, pre-compile" unless="skip-compile"> 73 74 <echo message="compiling sources for ${plugin.jar} ..."/> 74 <javac compiler=" com.google.errorprone.ErrorProneAntCompilerAdapter" srcdir="src" debug="true" destdir="${plugin.build.dir}" includeantruntime="false" encoding="UTF-8">75 <javac compiler="${javac.compiler}" srcdir="src" debug="true" destdir="${plugin.build.dir}" includeantruntime="false" encoding="UTF-8"> 75 76 <compilerclasspath> 76 77 <pathelement location="${error_prone_ant.jar}"/> … … 78 79 <compilerarg value="-Xlint:deprecation"/> 79 80 <compilerarg value="-Xlint:unchecked"/> 80 <compilerarg value="-Xep:ReferenceEquality:OFF"/> 81 <compilerarg value="-Xep:ReferenceEquality:OFF" compiler="com.google.errorprone.ErrorProneAntCompilerAdapter"/> 81 82 <compilerarg line="-Xmaxwarns 1000"/> 82 83 <classpath refid="plugin.classpath"/>
Note:
See TracChangeset
for help on using the changeset viewer.