Hi all, I need to use jersey-multipart package to handle multipart messages in a osgi service. I added the following dependency (and some others) to the project's pom file
<dependency> <groupId>com.sun.jersey.contribs</groupId> <artifactId>jersey-multipart</artifactId> <version>1.17</version> </dependency> I can compile my bundle but when I install it in Stanbol it doesn't activate and in the Felix console there is this message Imported Packages com.sun.jersey.multipart,version=[1.17,2) -- Cannot be resolved That is because maven downloads the needed packages in my local .m2 repository but those packages are not included in the bundle and as Stanbol didn't come with them it cannot activate my it. Now the question is: how can I add the required packages to Stanbol so that my bundle can be activated ? Thanks in advance. Luigi