Hi
To resolve your problem, please follow the link mentioned below:-
Link: - http://blogs.adobe.com/livecycle/2011/11/integrating-twitter4j-and-cqwem.html
//
These errors were caused because I didn’t put the twitter4j packages in the <Export-Package> element of the “maven-bundle-plugin”.
Here an example how I added the twitter4j in the <Export-Package> element.
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<extensions>true</extensions>
<configuration>
<instructions>
<Export-Package>
twitter4j.*
</Export-Package>
</instructions>
</configuration>
</plugin>
Link:- http://stackoverflow.com/questions/9776885/cant-start-osgi-bundle-because-import-cannot-be-resolved
Link:- http://stackoverflow.com/questions/30158628/aem-6-osgi-package-dependencies-not-getting-resolved
I hope this would help you.
Thanks and Regards
Kautuk Sahni