Asked
Active
Viewed 2,541 times
1

Czarek
- 597
- 1
- 10
- 20
-
1Is the maven plugin enabled? You can check it from `Settings -> Plugins`. See if `Maven Integration` is checked. – Mustafa Sep 08 '15 at 17:07
-
@Mustafa Just checked, it is enabled. – Czarek Sep 09 '15 at 08:25
2 Answers
1
Maven is not considered as a framework in IntelliJ. If you want to add Maven support to your project, you should open the parent pom.xml
, which will reimport the project as a Maven project.
See the documentation for further detail.
To import a Maven project with default settings
- On the main menu, choose File | Open.
- In the dialog box that opens, select the desired pom.xml file, and click OK. In this case the import is performed automatically, with the settings defined in the Maven Integration dialog.

Bastien Jansen
- 8,756
- 2
- 35
- 53
-
1That is false, asked my friend to check. Works fine for him: http://i.imgur.com/sgSrF1S.png – Czarek Sep 10 '15 at 16:53
-
-
1Im trying to convert a non-maven project to a maven project. Not import an existing maven project. – Czarek Sep 11 '15 at 17:19
-
I'm pretty sure you can't configure frameworks in IntelliJ unless the configuration files are present, so if you don't have (yet) any `pom.xml`, I don't think it will work. – Bastien Jansen Sep 13 '15 at 15:01
-1
File > Settings > Plugins > Search for Maven and check Maven Integration.
Now when you right-click your solution and add framework support you should see Maven listed

mcpolandc
- 217
- 2
- 7
- 15
-
This doesn't answer the question. The OP already stated that Maven Integration is enabled. – Jonathan E. Landrum Aug 04 '16 at 16:23