String[] 类型的 Maven 参数的语法是啥
Posted
技术标签:
【中文标题】String[] 类型的 Maven 参数的语法是啥【英文标题】:What is the syntax for a Maven parameter of type String[]String[] 类型的 Maven 参数的语法是什么 【发布时间】:2012-12-16 17:32:16 【问题描述】:例如Maven编译器插件中的annotationProcessors参数需要一个String[]作为参数。
Maven 中字符串数组的语法是什么?
【问题讨论】:
【参考方案1】:我的头顶数组是这样处理的:
<annotationProcessors>
<annotationProcessor>com.example.AP1</annotationProcessor>
<annotationProcessor>com.example.AP2</annotationProcessor>
</annotationProcessors>
(apache maven-users 邮件列表上的一个旧的post 支持这一点)。
【讨论】:
这与类型 List以上是关于String[] 类型的 Maven 参数的语法是啥的主要内容,如果未能解决你的问题,请参考以下文章
exec-maven-plugin exec:java失败:无法将配置值分配给java.lang.String类型的数组