From the course: Learning Quarkus

Unlock the full course today

Join today to access over 22,600 courses taught by industry experts or purchase this course individually.

Starting a project

Starting a project

From the course: Learning Quarkus

Start my 1-month free trial

Starting a project

- [Instructor] With Quarkus, there are several ways to create a new application. Of course any of them are viable, but I want to walk you through some of the basics of each one of them. One way to start a new Quarkus-based application is through the Maven plugin. You execute a Maven command, pass in the plugin, and call the create goal on that plugin, and it will generate a bootstrapped application for you with some basic extension points. Now, there's a few things that you need to add when you call the create goal. First and foremost, is the project group ID, which should look very familiar if you've ever worked with Maven. The second is the artifact ID, and this is obviously the name of your artifact itself, and again, it should be very familiar if you've ever worked with Maven. The next element that you need to provide is a class name, and this is the class name where your application will respond to web requests at,…

Contents