-
Notifications
You must be signed in to change notification settings - Fork 2.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Use Maven log in quarkus:run
#45967
Use Maven log in quarkus:run
#45967
Conversation
This is done in order to respect the --quiet flag thus making `mvn package quarkus:run` completely silent
This will allow for the following: ``` ./mvnw --quiet package quarkus:run ``` when quarkusio/quarkus#45967 is merged
This will allow for running the sample without having to install anything, using: ``` ./mvnw --quiet package quarkus:run ``` Note that we need quarkusio/quarkus#45967 to be merged for `--quiet` to be taken into account by `quarkus:run`
Status for workflow
|
This is done in order to respect the --quiet flag
thus making
mvn package quarkus:run
completelysilent