since you have OsgiManifest and Paths are at the same level it should be
like this

<configuration>
   <osgiManifest>
   .....  your down bean's attribute here
  </osgiManifest>

  <paths>
     <path>one</path>
     <path>two</path>
  </paths>

</configuration>

-D

On 1/10/06, John Wells <[EMAIL PROTECTED]> wrote:
>
> 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]
>
>

Reply via email to