Skip to content
Advertisement

Run a Maven Project using IntelliJ IDEA

I’m new to IntelliJ IDEA and I would like to run a simple Maven Quickstart project using it.

I followed all the instructions, the project was sucessfully built. But when I try to compile and run it , the Run button is not activated.

It looks like IntelliJ IDEA couldn’t figure out where the main class is.

This is a picture of the project’s hierarchy.

enter image description here

What is the problem ? And how can I fix it ?

Thanks !

Advertisement

Answer

Refresh the Maven project in the Maven Projects tool window (Reimport All Maven Projects), if it doesn’t help, refer to this answer for diagnostics.

Reimport

The issue is that your source roots were not configured correctly from the Maven model for some reason and the .java file appears in a plain directory instead of the Source root.

You can tell that by the color of the folders and by the icon of the file.

User contributions licensed under: CC BY-SA
6 People found this is helpful
Advertisement