Last active
May 19, 2020 09:38
-
-
Save CurtisNewbie/a78aee9b00e97a6242436ff9a2db3900 to your computer and use it in GitHub Desktop.
Bash script that makes creating Quarkus quick start project a bit easier
This file contains hidden or 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
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