On 02/03/2008, Rodrigo Madera <[EMAIL PROTECTED]> wrote:
>
> Hello community,
>
> Is there a way to force the final filename for a given bundle using
> maven-bundle-plugin?


yes - as with any Maven project just set the finalName in the build
descriptor, for example:

  <build>
    <finalName>myBundle</finalName>
    <!-- etc... -->
  </build>

and you should see the final bundle in "target/myBundle.jar"

however, note that setting finalName does _not_ change the name of the
artifact installed
in the local/remote maven repository, because this is controlled by the
repository layout.
( you will see the same thing with other packaging types, such as "jar" )

Thank you for your attention,
>
> Rodrigo
>

-- 
Cheers, Stuart

Reply via email to