Thanks you guys!! That was a very thorough explanation and examination of my 
pom.xml. I learned a lot about creating bundles.

As it turns out, I had an additional issue with my jasypt jar being corrupt. It 
was causing the superfluous * warnings, since it couldn't find the necessary 
classes. Deleting my local maven repository fixed that issue.

Thanks,
Danny


-----Original Message-----
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Stuart McCulloch
Sent: Tuesday, July 08, 2008 10:36 PM
To: [email protected]
Subject: Re: Existing Jar --> Bundle Conversion

Also, when you start to wrap third-party libraries as bundles it is a good
idea to use:

  <Import-Package>*;resolution:=optional</Import-Package>

to mark all the imports as optional - that means you won't have to go and
bundle all
the dependencies used by the library (which might include tool interfaces
like Ant),
just the ones that you actually use at runtime...

--
Cheers, Stuart

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to