Created
June 11, 2015 18:00
-
-
Save kuckmc01/9616256f551bd6b5b535 to your computer and use it in GitHub Desktop.
AEM 6.0 ready project using Maven Archetype and Terminal
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 | |
# Maven archetype that will create an AEM 6.0 ready project | |
# Might need to change permissions in order to run | |
# If all else fails, copy and paste everything below this line into the terminal | |
mvn archetype:generate \ | |
-DarchetypeRepository=https://repo.adobe.com/nexus/content/groups/public/ \ | |
-DarchetypeGroupId=com.adobe.granite.archetypes \ | |
-DarchetypeArtifactId=aem-project-archetype \ | |
-DarchetypeVersion=10 \ | |
-DgroupId=my-group-id \ | |
-DartifactId=myproject \ | |
-Dversion=1.0-SNAPSHOT \ | |
-Dpackage=com.mycompany.myproject \ | |
-DappsFolderName=myproject \ | |
-DartifactName="My Project" \ | |
-DcqVersion="6.1.0" \ | |
-DpackageGroup="My Company" \ | |
-DcontentFolderName="mycontent" \ | |
-DcssId="mycssId" \ | |
-DcomponentGroupName="mycomponents" \ | |
-DsiteName="mysite" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment