Search⌘ K
AI Features

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.

We'll cover the following...

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 MavenA build automation tool.. We can use a Maven command to create our project:

Shell
mvn io.quarkus.platform:quarkus-maven-plugin:2.15.3.Final:create \
-DprojectGroupId=io.educative \
-DprojectArtifactId=maven-test

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: ...