Expand my Community achievements bar.

Submissions are now open for the 2026 Adobe Experience Maker Awards.

Mark Solution

This conversation has been locked due to inactivity. Please create a new post.

Error: Dependency are missing

Avatar

Level 1

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]

IMG-20210610-WA0063.jpg

8 Replies

Avatar

Community Advisor and Adobe Champion
 

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

Avatar

Level 1
still the issuse is same

Avatar

Community Advisor

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

Avatar

Level 1

Avatar

Level 1
still the issuse not solved

Avatar

Level 10

Hi @rasheed445,

Could you please let know the aemVersion that you used while creating maven archetype project. 

Avatar

Community Advisor

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

Arun Patidar

AEM LinksLinkedIn

Avatar

Level 1

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>