Skip to content

Instantly share code, notes, and snippets.

@sh1ju
Forked from gabrielwalt/create.sh
Created March 15, 2018 04:14
Show Gist options
  • Select an option

  • Save sh1ju/a7b4194e9564fb8729127a374e68f84b to your computer and use it in GitHub Desktop.

Select an option

Save sh1ju/a7b4194e9564fb8729127a374e68f84b to your computer and use it in GitHub Desktop.
#!/bin/bash
mvn archetype:generate \
-DarchetypeGroupId=com.adobe.granite.archetypes \
-DarchetypeArtifactId=aem-project-archetype \
-DarchetypeVersion=13-SNAPSHOT \
-DgroupId=org.myorg \
-DartifactId=foobar \
-DartifactName="FooBar" \
-Dversion=0.0.1-SNAPSHOT \
-Dpackage=org.myorg.foobar \
-DappsFolderName=foobar \
-DconfFolderName=foobar \
-DcontentFolderName=foobar \
-DcssId=foobar \
-DcomponentGroupName="FooBar" \
-DsiteName="FooBar"\
-DpackageGroup="FooBar Content Package"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment