Error: Dependency are missing | Community
Skip to main content
rasheed445
June 12, 2021

Error: Dependency are missing

  • June 12, 2021
  • 5 replies
  • 3440 views

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]

This post is no longer active and is closed to new replies. Need help? Start a new post to ask your question.

5 replies

Ritesh_Mittal
Community Advisor and Adobe Champion
Community Advisor and Adobe Champion
June 12, 2021
 

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

June 14, 2021
still the issuse is same
Ankur_Khare
Community Advisor
Community Advisor
June 12, 2021

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

June 13, 2021
Vijayalakshmi_S
Level 10
June 14, 2021

Hi @rasheed445,

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

arunpatidar
Community Advisor
Community Advisor
June 14, 2021

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
May 26, 2022

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>