1

In Ant, am I alllowed to do something like this:

<compilerarg value= "-Xlint:deprecation,unchecked" /> 

i.e, I want to pass both -Xlint:deprecation and -Xlint:unchecked

4

1 回答 1

3

此页面描述了使用 compilerarg 元素的正确方法:https ://ant.apache.org/manual/Tasks/javac.html

您可以像这样执行多个嵌套元素:

<compilerarg value= "-Xlint:deprecation" />
<compilerarg value= "-Xlint:unchecked" />

或者使用 line 属性而不是 value:

<compilerarg line= "-Xlint:deprecation -Xlint:unchecked" />
于 2013-06-19T16:13:26.627 回答