Last active
December 2, 2019 16:25
-
-
Save gabrielwalt/2c645dbcfd974f25f9add192f44bb387 to your computer and use it in GitHub Desktop.
Command line to create a project with https://github.com/Adobe-Marketing-Cloud/aem-project-archetype
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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