Developer Tools
Explore how to streamline creating, updating, and deploying Quarkus applications using developer tools. Understand usage of Maven and Gradle build automation, the Quarkus CLI, and IDE extensions to enhance your development workflow and manage application extensions.
Quarkus comes with a toolchain that allows us to simplify creating, updating, and deploying our application. It can be used with various build tools.
Maven
Quarkus offers good support for
The above command uses Maven to create a new Quarkus application with the given attributes. The full list of those attributes includes projectVersion, javaVersion, and extensions.
Note: ...