允许我向Ant编译器元素传递多个参数吗?



在Ant中,我可以这样做吗:

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

。e,我想传递-Xlint:deprecation-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" />

相关内容

  • 没有找到相关文章

最新更新