Skip to content

Instantly share code, notes, and snippets.

@gabrielwalt
Last active December 2, 2019 16:25
Show Gist options
  • Save gabrielwalt/2c645dbcfd974f25f9add192f44bb387 to your computer and use it in GitHub Desktop.
Save gabrielwalt/2c645dbcfd974f25f9add192f44bb387 to your computer and use it in GitHub Desktop.
#!/bin/bash
mvn archetype:generate \
-DarchetypeGroupId=com.adobe.granite.archetypes \
-DarchetypeArtifactId=aem-project-archetype \
-DarchetypeVersion=22 \
-DgroupId=org.myorg \
-DartifactId=mysite \
-DartifactName="My Site" \
-Dversion=0.0.1-SNAPSHOT \
-Dpackage=org.myorg.mysite \
-DpackageGroup="My Site Content Package" \
-DappsFolderName=mysite \
-DconfFolderName=mysite \
-DcontentFolderName=mysite \
-Dlanguage_country=en_us \
-DisSingleCountryWebsite=n \
-DcssId=mysite \
-DcomponentGroupName="My Site" \
-DsiteName="My Site"\
-DoptionAemVersion=6.5.0 \
-DoptionIncludeExamples=y \
-DoptionIncludeErrorHandler=y \
-DoptionIncludeFrontendModule=y \
-DoptionDispatcherConfig=cloud
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment