Skip to content

Instantly share code, notes, and snippets.

@techforum-repo
Last active February 22, 2021 17:14
Show Gist options
  • Save techforum-repo/e9cccccb9c1639f4b734d17eb23ee009 to your computer and use it in GitHub Desktop.
Save techforum-repo/e9cccccb9c1639f4b734d17eb23ee009 to your computer and use it in GitHub Desktop.

Create Web Project for Tomcat

mvn archetype:generate -DgroupId=com.sample -DartifactId=tomcat-war-deployment -DarchetypeArtifactId=maven-archetype-webapp -DinteractiveMode=false

Craete AEM Project - Specific version

mvn -B archetype:generate -D archetypeGroupId=com.adobe.aem -D archetypeArtifactId=aem-project-archetype -D archetypeVersion=24 -D appTitle="My Site" -D appId="mysite" -D groupId="com.mysite" -D aemVersion=6.5.0

Craete AEM Project - Default Cloud

mvn -B archetype:generate -D archetypeGroupId=com.adobe.aem -D archetypeArtifactId=aem-project-archetype -D archetypeVersion=24 -D appTitle="My Site" -D appId="mysite" -D groupId="com.mysite"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment