How can I solve this issue
org.apache.jackrabbit.vault.packaging.DependencyException: Refusing to install package com.adobe.aem.guides.wknd:aem-guides-wknd.ui.apps:0.0.1-SNAPSHOT. required dependencies missing: [adobe/cq60:core.wcm.components.content:2.13.0, adobe/cq60:core.wcm.components.config:2.13.0]
Views
Replies
Total Likes
Hi @rasheed445 ,
AEM WKND Sites project has dependency on AEM Core components as mentioned below-
https://github.com/adobe/aem-guides-wknd
You need to install WCM core components-
https://github.com/adobe/aem-core-wcm-components
Reference-
https://experienceleague.adobe.com/docs/experience-manager-core-components/using/introduction.html
Hi,
Try to use the latest wknd code which will include all the core component dependencies-
https://github.com/adobe/aem-guides-wknd
Regards
ankur
Hi @rasheed445,
Could you please let know the aemVersion that you used while creating maven archetype project.
If you have are deploying using code using maven then you can update the core component version(version already present in aem) in main pom.xml otherwise you need to install core components 2.13.0
update the pom with this in wknd.ui.apps/pom.xml, definitely works.
<dependency>
<groupId>com.adobe.cq</groupId>
<artifactId>core.wcm.components.content</artifactId>
<version>2.13.0</version>
<type>pom</type>
</dependency>
<dependency>
<groupId>com.adobe.cq</groupId>
<artifactId>core.wcm.components.config</artifactId>
<version>2.13.0</version>
<type>pom</type>
</dependency>
Views
Replies
Total Likes
Views
Likes
Replies