AEM Version 6.2 Problem in creating OSGI Bundle
Hello Friends
I have created an OSGI bundle for AEM from eclipse .
Once we load the bundle the bundle does not move to Active state .
I can see the following errors mentioned in the OSGI bundle highlighted in RED
javax.xml,version=1.3.0 -- Cannot be resolved
javax.xml.namespace,version=1.3.0 -- Cannot be resolved
javax.xml.parsers,version=1.3.0 -- Cannot be resolved
javax.xml.transform,version=1.3.0 -- Cannot be resolved
javax.xml.transform.dom,version=1.3.0 -- Cannot be resolved
javax.xml.transform.sax,version=1.3.0 -- Cannot be resolved
javax.xml.transform.stream,version=1.3.0 -- Cannot be resolved
org.w3c.dom,version=3.0.0 -- Cannot be resolved
org.xml.sax,version=2.0.2 -- Cannot be resolved
We I go to the dependency finder I can see that the artifact already present .
<dependency>
<groupId>org.apache.sling</groupId>
<artifactId>org.apache.sling.fragment.xml</artifactId>
<version>1.0.2</version>
<scope>provided</scope>
</dependency>
When I remove the dependencies from the Imported Packages section of the manifest I receive the No class Found Exception for one of these jars.
Kindly advise.