The answer is right there in the error message. You probably have Eclipse open on this project, and there are compile errors. Unlike javac, Eclipse still outputs a class file for java sources with compile errors, but these classes are weird. In particular they depend on the default package ".", which is illegal in OSGi.
-- Neil Bartlett Sent from a phone On Friday, 21 June 2013 at 14:59, Roland wrote: > Thanks for your reply > > This is common practise and is not the reason... > > <IMPORT-PACKAGE>*</IMPORT-PACKAGE> > > > > -- > View this message in context: > http://apache-felix.18485.x6.nabble.com/Invalid-package-name-tp5004065p5004069.html > Sent from the Apache Felix - Users mailing list archive at Nabble.com. > > --------------------------------------------------------------------- > To unsubscribe, e-mail: [email protected] > For additional commands, e-mail: [email protected] > >

