Chapter 7. Importing your Quarkus project into an IDE

Although it is possible to develop your Quarkus project in a text editor, you might find it easier to use an integrated development environment (IDE) to work on your project. The following instructions show you how to import your Quarkus project into specific IDEs.

Prerequisites

  • You have a Quarkus Maven project.

Procedure

Complete the steps in one of the following sections:

CodeReady Studio or Eclipse

  1. In CodeReady Studio or Eclipse, click FileImport.
  2. Select MavenExisting Maven Project.
  3. On the next screen, select the root location of the project. A list of the found modules appears.
  4. Select the generated project and click Finish.
  5. To start your application, enter the following command in a new terminal window:

    ./mvnw compile quarkus:dev

IntelliJ

  1. In IntelliJ, complete one of the following tasks:

    • Select FileNewProject From Existing Sources.
    • On the Welcome page, select Import project.
  2. Select the project root directory.
  3. Select Import project from external model and then select Maven.
  4. Review the options and then click Next.
  5. Click Finish.
  6. To start your application, enter the following command in a new terminal window:

    ./mvnw compile quarkus:dev

Apache NetBeans

  1. Select FileOpen Project.
  2. Select the project root directory.
  3. Click Open Project.
  4. To start your application, enter the following command in a new terminal window:

    ./mvnw compile quarkus:dev

Visual Studio Code

  1. Install the Java Extension Pack.
  2. In Visual Studio Code, open your project directory. The project loads as a Maven project.