hi there,
because of using dom4j to parse and create XML format document, as a result i add dependency to pom.xml
<dependency> <groupId>dom4j</groupId> <artifactId>dom4j</artifactId> <version>1.6.1</version> </dependency> <dependency> <groupId>jaxen</groupId> <artifactId>jaxen</artifactId> <version>1.1.1</version> </dependency>
After run command "mvn clean install" and deploy this jar to OSGI bundle pool. Eventually appear error: org.dom4j -- Cannot be resolved, illustration following:
[img]dom4j.png[/img]
Anyone could help see it? Thanks a lot.
Best regards,
Brian
Solved! Go to Solution.
Views
Replies
Total Likes
hi,
i find a solution to resolve this problem as below:
<Import-Package> com.sun.msv.*;resolution:=optional, nu.xom;resolution:=optional, org.gjt.xpp;resolution:=optional, org.jdom.*;resolution:=optional, org.relaxng.datatype;resolution:=optional, org.xmlpull.v1;resolution:=optional, * </Import-Package>
After deployment and it helps. But i not sure if it is right?
Anyway thanks a lot for your help.
Views
Replies
Total Likes
Brian,
dom4j is a 3rd party jar and it would not be available in the CQ. Hence it would be throwing that error.
Include the <Embed-Dependency> in your pom.xml like below and you should resolve this
<plugin> <groupId>org.apache.felix</groupId> <artifactId>maven-bundle-plugin</artifactId> <extensions>true</extensions> <configuration> <instructions> <Embed-Dependency>dom4j</Embed-Dependency> <Import-Package></Import-Package> <Export-Package></Export-Package> <Bundle-SymbolicName></Bundle-SymbolicName> </instructions> </configuration> </plugin>
Views
Replies
Total Likes
hi bsloki,
thanks for your reply. And i add dependency to pom.xml as below:
<plugin> <groupId>org.apache.felix</groupId> <artifactId>maven-bundle-plugin</artifactId> <extensions>true</extensions> <configuration> <instructions> <Bundle-Category>cq5</Bundle-Category> <Embed-Dependency> dom4j, jaxen </Embed-Dependency> <Embed-Transitive>true</Embed-Transitive> <Import-Package> * </Import-Package> </instructions> </configuration> </plugin>
But after deploy it apear error again, please see following:
com.day.cq.commons.jcr,version=[5.7,6) from com.day.cq.cq-commons (263)
com.day.cq.wcm.api,version=[1.1,2) from com.day.cq.wcm.cq-wcm-api (368)
com.sun.msv.datatype -- Cannot be resolved and overwritten by Boot Delegation
com.sun.msv.datatype.xsd -- Cannot be resolved and overwritten by Boot Delegation
javax.jcr,version=[2.0,3) from org.apache.sling.jcr.jcr-wrapper (106)
javax.servlet.http from org.apache.felix.http.servlet-api (29)
javax.swing.table from org.apache.felix.framework (0)
javax.swing.tree from org.apache.felix.framework (0)
javax.xml.bind from org.apache.felix.framework (0)
javax.xml.namespace from org.apache.felix.framework (0)
javax.xml.parsers from org.apache.felix.framework (0)
javax.xml.stream from org.apache.felix.framework (0)
javax.xml.stream.events from org.apache.felix.framework (0)
javax.xml.stream.util from org.apache.felix.framework (0)
javax.xml.transform from org.apache.felix.framework (0)
javax.xml.transform.sax from org.apache.felix.framework (0)
javax.xml.transform.stream from org.apache.felix.framework (0)
nu.xom -- Cannot be resolved
org.apache.commons.fileupload.servlet from org.apache.commons.fileupload (23)
org.apache.jackrabbit.commons,version=[2.4,3) from org.apache.jackrabbit.jackrabbit-jcr-commons (99)
org.apache.sling.api,version=[2.2,3) from org.apache.sling.api (184)
org.apache.sling.api.request,version=[2.2,3) from org.apache.sling.api (184)
org.apache.sling.api.resource,version=[2.1,3) from org.apache.sling.api (184)
org.apache.sling.api.servlets,version=[2.1,3) from org.apache.sling.api (184)
org.apache.sling.jcr.api,version=[2.0,3) from org.apache.sling.jcr.api (104)
org.gjt.xpp -- Cannot be resolved
org.jdom -- Cannot be resolved
org.jdom.input -- Cannot be resolved
org.osgi.framework,version=[1.5,2) from org.apache.felix.framework (0)
org.osgi.service.component,version=[1.1,2) from org.apache.felix.scr (55)
org.relaxng.datatype -- Cannot be resolved
org.slf4j,version=[1.5,2) from slf4j.api (14)
org.xml.sax from org.apache.felix.framework (0)
org.xml.sax.ext from org.apache.felix.framework (0)
org.xml.sax.helpers from org.apache.felix.framework (0)
org.xmlpull.v1 -- Cannot be resolved
Views
Replies
Total Likes
And also it seems like a dependency hell even though i add the rest xom, pull-parser, jdom,xpp3, xsdlib and so on.
Views
Replies
Total Likes
Hey Can you put the manifest file here.. it would be easy to debug
Also, try with
Views
Replies
Total Likes
hi bsloki,
Again modify that pom.xml as per your comment, but error either as following:
Imported Packages com.day.cq.commons.jcr,version=[5.7,6) from com.day.cq.cq-commons (263)
com.day.cq.wcm.api,version=[1.1,2) from com.day.cq.wcm.cq-wcm-api (368)
com.sun.msv.datatype -- Cannot be resolved and overwritten by Boot Delegation
com.sun.msv.datatype.xsd -- Cannot be resolved and overwritten by Boot Delegation
javax.jcr,version=[2.0,3) from org.apache.sling.jcr.jcr-wrapper (106)
javax.servlet.http from org.apache.felix.http.servlet-api (29)
javax.swing.table from org.apache.felix.framework (0)
javax.swing.tree from org.apache.felix.framework (0)
javax.xml.bind from org.apache.felix.framework (0)
javax.xml.namespace from org.apache.felix.framework (0)
javax.xml.parsers from org.apache.felix.framework (0)
javax.xml.stream from org.apache.felix.framework (0)
javax.xml.stream.events from org.apache.felix.framework (0)
javax.xml.stream.util from org.apache.felix.framework (0)
javax.xml.transform from org.apache.felix.framework (0)
javax.xml.transform.sax from org.apache.felix.framework (0)
javax.xml.transform.stream from org.apache.felix.framework (0)
nu.xom -- Cannot be resolved
org.apache.commons.fileupload.servlet from org.apache.commons.fileupload (23)
org.apache.jackrabbit.commons,version=[2.4,3) from org.apache.jackrabbit.jackrabbit-jcr-commons (99)
org.apache.sling.api,version=[2.2,3) from org.apache.sling.api (184)
org.apache.sling.api.request,version=[2.2,3) from org.apache.sling.api (184)
org.apache.sling.api.resource,version=[2.1,3) from org.apache.sling.api (184)
org.apache.sling.api.servlets,version=[2.1,3) from org.apache.sling.api (184)
org.apache.sling.jcr.api,version=[2.0,3) from org.apache.sling.jcr.api (104)
org.gjt.xpp -- Cannot be resolved
org.jdom -- Cannot be resolved
org.jdom.input -- Cannot be resolved
org.osgi.framework,version=[1.5,2) from org.apache.felix.framework (0)
org.osgi.service.component,version=[1.1,2) from org.apache.felix.scr (55)
org.relaxng.datatype -- Cannot be resolved
org.slf4j,version=[1.5,2) from slf4j.api (14)
org.xml.sax from org.apache.felix.framework (0)
org.xml.sax.ext from org.apache.felix.framework (0)
org.xml.sax.helpers from org.apache.felix.framework (0)
org.xmlpull.v1 -- Cannot be resolved
And i put the manifest here for your reference:
Manifest-Version: 1.0 Bnd-LastModified: 1418956844663 Build-Jdk: 1.6.0_45 Built-By: brian.lei Bundle-Category: cq5 Bundle-ClassPath: .,dom4j-1.6.1.jar,jaxen-1.1.1.jar Bundle-Description: Maven Multimodule project for Claim Training Package . Bundle-ManifestVersion: 2 Bundle-Name: Claim Training Package Bundle Bundle-SymbolicName: com.adobe.cq.sling.claim-bundle Bundle-Version: 1.0.0.SNAPSHOT Created-By: Apache Maven Bundle Plugin Embed-Dependency: dom4j, jaxen ;scope=compile|runtime;inline=false Embed-Transitive: true Embedded-Artifacts: dom4j-1.6.1.jar;g="dom4j";a="dom4j";v="1.6.1",jaxen- 1.1.1.jar;g="jaxen";a="jaxen";v="1.1.1" Export-Package: com.adobe.cq.sling;uses:="javax.jcr,com.day.cq.wcm.api,o rg.apache.jackrabbit.commons,com.day.cq.commons.jcr,org.slf4j,org.apach e.sling.api.resource,org.apache.sling.api.servlets,org.apache.sling.jcr .api,org.apache.sling.api,org.osgi.framework,org.apache.sling.api.reque st,org.apache.commons.fileupload.servlet,javax.servlet.http,org.osgi.se rvice.component";version="1.0.0.SNAPSHOT" Import-Package: com.day.cq.commons.jcr;version="[5.7,6)",com.day.cq.wcm. api;version="[1.1,2)",com.sun.msv.datatype,com.sun.msv.datatype.xsd,jav ax.jcr;version="[2.0,3)",javax.servlet.http,javax.swing.table,javax.swi ng.tree,javax.xml.bind,javax.xml.namespace,javax.xml.parsers,javax.xml. stream,javax.xml.stream.events,javax.xml.stream.util,javax.xml.transfor m,javax.xml.transform.sax,javax.xml.transform.stream,nu.xom,org.apache. commons.fileupload.servlet,org.apache.jackrabbit.commons;version="[2.4, 3)",org.apache.sling.api;version="[2.2,3)",org.apache.sling.api.request ;version="[2.2,3)",org.apache.sling.api.resource;version="[2.1,3)",org. apache.sling.api.servlets;version="[2.1,3)",org.apache.sling.jcr.api;ve rsion="[2.0,3)",org.gjt.xpp,org.jdom,org.jdom.input,org.osgi.framework; version="[1.5,2)",org.osgi.service.component;version="[1.1,2)",org.rela xng.datatype,org.slf4j;version="[1.5,2)",org.xml.sax,org.xml.sax.ext,or g.xml.sax.helpers,org.xmlpull.v1 Service-Component: OSGI-INF/serviceComponents.xml Tool: Bnd-1.50.0
Views
Replies
Total Likes
Brian,
I see that dom4j and jaxen jars are included as part of your bundle.
You can verify the same by extracting your bundle locally and confirm that these jars are included in the bundle. If so the errors that are coming of different jars and not with dom4j or jaxen
Views
Replies
Total Likes
hi,
i find a solution to resolve this problem as below:
<Import-Package> com.sun.msv.*;resolution:=optional, nu.xom;resolution:=optional, org.gjt.xpp;resolution:=optional, org.jdom.*;resolution:=optional, org.relaxng.datatype;resolution:=optional, org.xmlpull.v1;resolution:=optional, * </Import-Package>
After deployment and it helps. But i not sure if it is right?
Anyway thanks a lot for your help.
Views
Replies
Total Likes
Hi,
Try installing this bundle in your console
Thanks,
Vamshi
Views
Replies
Total Likes