Skip to content

Instantly share code, notes, and snippets.

@CurtisNewbie
Last active May 19, 2020 09:38
Show Gist options
  • Save CurtisNewbie/a78aee9b00e97a6242436ff9a2db3900 to your computer and use it in GitHub Desktop.
Save CurtisNewbie/a78aee9b00e97a6242436ff9a2db3900 to your computer and use it in GitHub Desktop.
Bash script that makes creating Quarkus quick start project a bit easier
VERSION=1.4.2.Final
echo -e '\n'Initiating Quarkus $VERSION Quick-Start Project
echo -e '\n'Enter Group Id:
read groupId
echo -e '\n'Enter artifact Id:
read artifactName
echo -e '\n'Creating Project...
echo -e Group ID: \'$groupId\'
echo -e Artifact ID: \'$artifactName\'
mvn io.quarkus:quarkus-maven-plugin:$VERSION:create -DprojectGroupId=$groupId -DprojectArtifactId=$artifactName
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment