Skip to content

Instantly share code, notes, and snippets.

@LuboTerifaj
Last active March 30, 2021 16:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save LuboTerifaj/2960e760772597a82e6940f13848f392 to your computer and use it in GitHub Desktop.
Save LuboTerifaj/2960e760772597a82e6940f13848f392 to your computer and use it in GitHub Desktop.
# Navigate to your projects working directory
# cd $WORKING_DIRECTORY/$PROJECTS/
cd ~/jbpm-kogito-home/projects
##############################
# Execute one of the following
##############################
# Create a project using maven archetype
mvn archetype:generate -DarchetypeGroupId=org.kie -DarchetypeArtifactId=kie-kjar-archetype -DarchetypeVersion=7.51.0.Final
# Create a project using maven archetype with specific GAV
# If you want create more projects, you can also specify GAV of your project by adding these properties to the command: -DgroupId=<my.groupid> -DartifactId=<my-artifactId>
mvn archetype:generate -DarchetypeGroupId=org.kie -DarchetypeArtifactId=kie-kjar-archetype -DarchetypeVersion=7.51.0.Final -DgroupId=org.kie.businessapp -DartifactId=businessapp-two
# Create a Case project using maven archetype
# If you want to create a skeleton for Case project, add -DcaseProject=true property to the command
mvn archetype:generate -DarchetypeGroupId=org.kie -DarchetypeArtifactId=kie-kjar-archetype -DarchetypeVersion=7.51.0.Final -DcaseProject=true
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment