quarkusio / quarkus

Quarkus: Supersonic Subatomic Java.
https://quarkus.io
Apache License 2.0
13.35k stars 2.55k forks source link

Improve quarkus run command #41380

Open ia3andy opened 1 week ago

ia3andy commented 1 week ago

Description

Currently if not built quarkus run is failing.

If it's not build, it should build it before running, and, we should have quarkus run --clean to always rebuild.

Implementation ideas

Open

maxandersen commented 1 week ago

mind you; if we start requiring build to happen first it will force quarkus run to be slow as it first has to check.

I believe that's why it is assumed to not do the check.

pn03 commented 1 week ago

Hi @ia3andy I would like to contribute to this issue.

Implementation requirement is to add --clean (boolean) option to quarkus run to force build process, right?