Importing to an IDE
- Overview
- Eclipse IDE
- IntelliJ IDEA
- NetBeans IDE
- VS Code
You can import a Maven project into IntelliJ IDEA in several ways. The most common approach is to open the pom.xml file directly.
In the Welcome to IntelliJ IDEA screen, click Open.
The welcome window is only shown when you close all projects in IntelliJ IDEA. If you do not want to close your currently open projects, you can select
in the menu instead.Note that Import Project gives you more options to tweak the import process. However, this is out of the scope of this article.
Find the extracted folder, and select the pom.xml file.
Select Open as Project. This imports a project based on the POM file.
IntelliJ imports the project and downloads all the necessary dependencies. This can take several minutes, depending on your internet connection speed.
When the import is complete, your project structure will be similar to the following:
Java source files are in the
src/main/java
folder.Test files are in the
src/test
folder. We will discuss these later.