quarkus-tutorial
quarkus-tutorial copied to clipboard
Making quarkus version as env variable
Making Quarkus version as environment variable, as that helps in the commands like to be easy to maintain during release updates:
mvn io.quarkus:quarkus-maven-plugin:$QUARKUS_VERSION:create \
-DprojectGroupId="com.example" \
-DprojectArtifactId="fruits-app" \
-DprojectVersion="1.0-SNAPSHOT" \
-DclassName="FruitResource" \
-Dpath="fruit"```