In case you get an error that the quarkus port is already allocated, run this to kill the process running on 8080.
kill $(sudo ss -lptn 'sport = :8080' | tail -n +2 | cut -d '=' -f 2 | cut -d ',' -f 1)
the parsing logic is terrible, if you have an improvement, please let me know