Skip to content

Instantly share code, notes, and snippets.

@LuboTerifaj
Last active March 30, 2021 16:17
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Embed
What would you like to do?
# 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