What is the syntax for a Maven parameter of type String[] What is the syntax for a Maven parameter of type String[] arrays arrays

What is the syntax for a Maven parameter of type String[]


Off the top of my head arrays are handled this way:

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

(an old post on the apache maven-users mailing list supports this).