Expand my Community achievements bar.

Learn about Edge Delivery Services in upcoming GEM session

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

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

Community Advisor

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

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>