Re: Problem with maven-bundle-plugin not importing packages

2013-09-10 Thread Cristiano Gavião
Hi, hi, I faced some like this once. It seems that maven-bundle-plugin adds an import-package declaration only when there are explicitly references to desired packages. by explicitly I mean, you must have a declaration of a parameter or an attribute. even if you just add an not used import

Re: Problem with maven-bundle-plugin not importing packages

2013-09-10 Thread Christian Schneider
Am 10.09.2013 20:27, schrieb Cristiano Gavião: Hi, hi, I faced some like this once. It seems that maven-bundle-plugin adds an import-package declaration only when there are explicitly references to desired packages. by explicitly I mean, you must have a declaration of a parameter or an

Problem with maven-bundle-plugin not importing packages

2013-09-09 Thread Christian Schneider
Hi all, I am wrapping webservice calls with OSGi service calls to hide the fact that web services are used. To do so my typical setup for a service is: common - service interface and data classes service - service impl and cxf endpoint client - Creates cxf proxy and publishes an OSGi service