Posts

Showing posts with the label Core components in AEM

Core components classes/models in Eclipse

Finding Core Components Classes and Models in Eclipse Finding Core Components Classes and Models in Eclipse Date: March 07, 2020 Hello Everyone, AEM provides a range of out-of-the-box components, such as lists, images, navigation, and more. Whether you’re developing custom components or enhancing existing ones, understanding the core components' implementation is crucial. If you want to locate the core components' implementation classes and models in Eclipse or any other IDE, you’ll need to include specific dependencies in your POM file. Steps to Locate Core Components Classes Add Dependencies in Your POM File To access the core components, you need to add dependencies to your project’s POM file. In the Parent POM of Your Project: <dependency> <groupId>com.adobe.cq</groupId> <artifactId>core.wcm.components.core</artifactId...