Chapter 8. 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 File Import.
  2. Select Maven Existing 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 File New Project 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 File Open 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.
Red Hat logoGithubRedditYoutubeTwitter

Learn

Try, buy, & sell

Communities

About Red Hat Documentation

We help Red Hat users innovate and achieve their goals with our products and services with content they can trust.

Making open source more inclusive

Red Hat is committed to replacing problematic language in our code, documentation, and web properties. For more details, see the Red Hat Blog.

About Red Hat

We deliver hardened solutions that make it easier for enterprises to work across platforms and environments, from the core datacenter to the network edge.

© 2024 Red Hat, Inc.