我需要设置两个全局属性,以便在我的ant脚本中调用javac。
目前我在每个javac调用中都有这个:
<compilerarg compiler="org.eclipse.jdt.core.JDTCompilerAdapter" line="-1.6 -warn:none"/>
我试图像这样设置一个全局属性
<property name="compiler.args" value="-1.6 -warn:none" />
但只有第一个参数被赋予javac,第二个参数被忽略。
答案 0 :(得分:1)
根据http://ant.apache.org/manual/using.html#arg,可以为line
的{{1}}属性留出空间。
compilerarg
在设置line a space-delimited list of command-line arguments.
后,仅使用以下是导致任何特定错误?
property