Using the ant javac adapter
The Eclipse compiler can be used inside an Ant buildfile using the javac adapter. In order to use the Eclipse compiler, you simply need to define thebuild.compiler property in your buildfile.
In order to get the batch compiler working in an ant buildfile, the ant runtime classpath needs to contain the Eclipse batch compiler. When you run your ant buildfile:
- outside of Eclipse: the easiest way to set up the ant runtime classpath is to add the
ecj.jarfile using the-libargument or dumping it inside theANT_HOMElocation. - inside Eclipse using the same JRE than Eclipse: the Eclipse batch compiler is implicitely added to the ant runtime classpath.
- inside Eclipse using the different JRE: the Eclipse batch compiler must be explicitely added to the ant runtime classpath. This can be done using the
ecj.jarfile or using the org.eclipse.jdt.core jar file and thejdtCompilerAdapter.jarfile located inside the org.eclipse.jdt.core jar file (this jar file needs to be extracted first).
Here is a small example:
<?xml version="1.0" encoding="UTF-8"?>
<project name="compile" default="main" basedir="../.">
<property name="build.compiler" value="org.eclipse.jdt.core.JDTCompilerAdapter"/>
<property name="root" value="${basedir}/src"/>
<property name="destdir" value="d:/temp/bin" />
<target name="main">
<javac srcdir="${root}" destdir="${destdir}" debug="on" nowarn="on" extdirs="d:/extdirs" source="1.4">
<classpath>
<pathelement location="${basedir}/../org.eclipse.jdt.core/bin"/>
</classpath>
</javac>
</target>
</project>
The syntax used for the javac Ant task can be found in the Ant javac task documentation. The current adapter supports the Javac Ant task 1.4.1 up to 1.6.5 versions.
If you are using a version above 1.5.0, you can use the nested compiler argument element (<compilerarg>) to specify compiler specific options.
... <javac srcdir="${root}" destdir="${destdir}" debug="on" nowarn="on" extdirs="d:/extdirs" source="1.4"> <classpath> <pathelement location="${basedir}/../org.eclipse.jdt.core/bin"/> </classpath> <compilerarg compiler="org.eclipse.jdt.core.JDTCompilerAdapter" line="-1.5 -warn:+boxing"/> </javac> ...Note:
- To prevent compiler dependant buildfiles, we strongly advise you to use a
<compilerarg>whose "compiler" attribute value isorg.eclipse.jdt.core.JDTCompilerAdapter. If this is not set, the buildfile can only be used with the Eclipse compiler. If set, the nested compiler argument is ignored if the name is different from the compiler name specified by thebuild.compilerproperty. -
<compilerarg>should not be used to set values like target value, source value, debug options, or any options that could be set using the defined attributes of thejavacant task. Its usage must be reserved to pass compiler specific options like warning options. When a command-line argument is specified more than once, the Eclipse batch compiler can report errors like:duplicate target compliance setting specification: 1.5
本文介绍如何通过配置Ant脚本使用Eclipse自带的Java编译器,实现即使存在编译错误也能尽可能多地编译代码的目标。这种方法特别适用于单元测试或脚本类项目。
831

被折叠的 条评论
为什么被折叠?



