Posts

Showing posts from December, 2021

Creating an AEM Project using Maven

Image
AEM 6.5.5 Project can be created by using maven Command. Make sure the softwares are installed . Here we will use the below command on the command prompt. Run the below command on cmd prompt. mvn -B archetype:generate -D archetypeGroupId=com.adobe.aem -D archetypeArtifactId=aem-project-archetype -D archetypeVersion=42 -D appTitle="Learn AEM" -D appId="learnaem" -D groupId="com.learnaem" -DincludeExamples=y -DaemVersion=6.5.5 -DincludeDispatcherConfig=n -DfrontendModule=none -DincludeExamples=Y -DincludeErrorHandler=Y -DlanguageCountry="en_us" -DsingleCountry=y Note: If you want to run for FE framework like react/angular then change command to  frontendModule=react or angular We are using Adobe Archtype 26 which will create the structure of the project. For more info refer the adobe archtype github . All the above mentioned variable can be refered in the adobe archtype read.md github. with above command below folder structure is created. All Folde...

Softwares Required to start Development

Pre-requiste to start AEM Developer course System with 8GB RAM Java Installation - Java 11 Maven - 3.3.9+ AEM Instance - 6.5.5 Eclipse Create of project using Maven for 6.5.5 with Archtype 26 mvn -B archetype:generate -D archetypeGroupId=com.adobe.aem -D archetypeArtifactId=aem-project-archetype -D archetypeVersion=26 -D appTitle="Learn AEM" -D appId="learnaem" -D groupId="com.learnaem" -DincludeExamples=y -DaemVersion=6.5.5 -DincludeDispatcherConfig=n -DfrontendModule=none -DincludeExamples=Y -DincludeErrorHandler=Y -DlanguageCountry="en_us" -DsingleCountry=y Build Project : mvn clean install Deploy to AEM: Go to package manager and install the zip file which is in all