Skip to main content
rasheed445
New Participant
June 12, 2021

Error: Dependency are missing

  • June 12, 2021
  • 5 replies
  • 3445 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

New Participant
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>

arunpatidar
New Participant
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
Vijayalakshmi_S
New Participant
June 14, 2021

Hi @rasheed445,

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

Ankur_Khare
New Participant
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

New Participant
June 13, 2021
Ritesh_Mittal
New Participant
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

New Participant
June 14, 2021
still the issuse is same