December 2019
Intermediate to advanced
314 pages
6h 51m
English
The Quarkus Maven plugin is pretty agnostic in spite of its name. As a matter of fact, you can also use it to generate Gradle projects. A comparison between the two tools is out of the scope of this book; however, a large number of developers prefer Gradle as a build tool since it's modeled in a way that is extensible in the most fundamental ways and has outstanding performance.
That being said, you can generate a Gradle project by simply setting the buildTool option to gradle, which otherwise defaults to maven. Here's how you can generate your project with Gradle:
mvn io.quarkus:quarkus-maven-plugin:1.0.0.Final:create \ -DprojectGroupId=com.packt.quarkus.Chapter02 \ -DprojectArtifactId=hello-rest ...
Read now
Unlock full access