I have multiple local installations for AEM and am trying to find which folder is mapped to my current AEM instance. How can you tell? The reason for this is I need to update a version number in one of the pom.xml files, so I have to find the correct core\pom.xml file.
com.adobe.cq.wcm.core.components.models,version=[12.19,13) -- Cannot be resolved
Solved! Go to Solution.
Views
Replies
Total Likes
@kayest -
If you are deploying using maven then you can update the core component version in main pom.xml otherwise you need to install core components package via localhost:4502/crx/packmgr
sample-
<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>
In particular to your problem above, you show us com.adobe.cq.wcm.core.components.models,version=[12.19,13) -- Cannot be resolved, this is the backend trying to find a bundle in the OSGI Apache Felix container. Backend bundles can be found localhost:4502/system/console/bundles
You can click on your own bundle, and reveal which imported bundle is missing.
From looking at your error, it looks like you have either not installed the WCM Core Component's or the version that you have installed is wrong.
Yes, you're right. Thanks for the reply. Something is amiss with the WCM Core Component. I need to change a version but don't know which core/pom.xml file to update. I can update them all, but I still would like to know which folder is the relevant folder.
@kayest - You can check OSGi bundle status(Apache Felix Console) in localhost:4502/system/console/bundles
Error you mentioned seems Core Component Package is not installed or missed
Yes, I saw this but am unable to start it. One of our devops suggested updated one of the version numbers, which I did but I get the same error after making the update.
@kayest -
If you are deploying using maven then you can update the core component version in main pom.xml otherwise you need to install core components package via localhost:4502/crx/packmgr
sample-
<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>
@kayest Do you have multiple AEM installations running in local or multiple code repositories deployed to a single local AEM instance?
Based on your error, I assume that you've multiple repositories deployed to a local AEM instance. You wanted to know which pom.xml requires a version update to resolve the bundle issue. You can run the following steps to find the right core module.
Views
Likes
Replies