/generate-kjar-project.sh Secret
Last active
March 30, 2021 16:17
Star
You must be signed in to star a gist
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
# 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