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
此页面描述了使用 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" />