How to Create the AEM Project
There are a couple options for creating a Maven Multi-module project for AEM. I am using Maven AEM Project Archetype 35. Cloud Manager also to initiate the creation of an AEM application project. The underlying project generated by the Cloud Manager UI results in the same structure as using the archetype directly.
- Open up a command-line terminal. Verify that Maven is installed:
- Run the below script in the command line to generate the project in batch mode:
mvn -B org.apache.maven.plugins:maven-archetype-plugin:3.2.1:generate -D archetypeGroupId=com.adobe.aem -D archetypeArtifactId=aem-project-archetype -D archetypeVersion=39 -D appTitle="WKND Sites Project" -D appId="wknd" -D groupId="com.adobe.aem.guides" -D artifactId="aem-guides-wknd" -D package="com.adobe.aem.guides.wknd" -D version="0.0.1-SNAPSHOT" -D aemVersion="cloud"
To target AEM 6.5.14+ replace aemVersion="cloud"
with aemVersion="6.5.14"
. and also we are using archetypeVersion=39
- The following folder and file structure is generated by the Maven archetype on your local file system:
- Run the following commands (select the command accordingly) to build and deploy the entire project to AEM:
Note: Make sure that AEM local server is running on the 4502 port
To build all the modules run in the project root directory the following command with Maven
mvn clean install
To build all the modules and deploy the all package to a local instance of AEM, run in the project root directory the following command:
mvn clean install -PautoInstallSinglePackage
Or to deploy it to a publish instance, run
mvn clean install -PautoInstallSinglePackagePublish
Or alternatively
mvn clean install -PautoInstallSinglePackage -Daem.port=4503
Or to deploy only the bundle to the author, run
mvn clean install -PautoInstallBundle
Or to deploy only a single content package, run in the sub-module directory (i.e ui.apps)
mvn clean install -PautoInstallPackage
- I ran "mvn clean install -PautoInstallSinglePackage" and below is the successful screen shot after the build
http://localhost:4502/editor.html/content/wknd/us/en.html
Comments
Post a Comment