Lets say I have a mojo with something like this:
/**
* @parameter
*/
private OsgiManifest osgiManifest;
Furthermore, lets say in osgiManifest I have the following:
/**
* @parameter
*/
private String path[];
public void setPath(String[] paths) { this.path = path; }
public String[] getPath() { return path; }
How do I represent the [] parameter in the pom file using this plugin.
This does not work:
<configuration>
<osgiManifest>
<path>one</path>
<path>two</path>
</osgiManifest>
</configuration>
Any help is appreciated.
John Wells (Aziz)
[EMAIL PROTECTED]
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]