String []类型的Maven参数的语法是什么

时间:2013-01-02 10:36:36

标签: maven syntax parameter-passing arrays

例如,Maven编译器插件中的annotationProcessors参数需要String []作为参数。

Maven中字符串数组的语法是什么?

1 个答案:

答案 0 :(得分:11)

关闭我的头顶阵列是这样处理的:

<annotationProcessors>
    <annotationProcessor>com.example.AP1</annotationProcessor>
    <annotationProcessor>com.example.AP2</annotationProcessor>
</annotationProcessors>

(apache maven-users邮件列表中的旧post支持此功能。)