How to get the Maven project window in Intellij 14 | Update: cannot see the right side "tab bar" with Maven project

MavenIntellij Idea

Maven Problem Overview


I have a very simple question, but I Googled and somehow I couldn't find it. I was wondering how can I get the

Maven Project Pane

in Intellij 14 or something similar?

I saw it in a tutorial, but couldn't find the panel. In my case when I followed this video exactly, I couldn't see the panel and I couldn't find it anywhere. I have IntelliJ 14.

UPDATE I just experimented a bit with the Intellij interface but I can't seem to see the right hand side bar. See

image

Maven Solutions


Solution 1 - Maven

I had similar problem until I right-clicked the option in POM "Add as Maven Project".

enter image description here

Notice: IDEA 2019.2 and I couldn't even find Maven in "Tool Windows" of the (existing) project before it.

Solution 2 - Maven

First, make sure you have enabled maven plugin in

FileSettingsPluginsMaven Integration

If so and still the tool window is hidden then

go to ViewTool WindowsMaven Projects to open it.

Solution 3 - Maven

For those stuck with this issue, enable View -> Tool Buttons.

Solution 4 - Maven

You can find the Maven Projects pane by going to Help > Find Action or press Ctrl + Shift + A and type in "Maven Projects". However I can't see it anywhere in the elaborate menu's.

Solution 5 - Maven

Finally found the solution, right-click on the pom.xml file (parent pom.xml if it is a multi-module project) and hit "add as a maven project".

Solution 6 - Maven

I had the same problem with a maven project, the tab wasn't showing up and even in the View->Tool windows menu, there was no maven item.
After searching the internet i could not find a solution but then i looked in Intellij idea
and noticed a Even Log showing a number in a red circle, i clicked it and then read an error message:

Non-managed pom.xml file found:   
Add as Maven Project

check out solution proposed by invzbl3, It might help.

Solution 7 - Maven

Simple solution to see maven on intelliJ is go to your right click on your pom.xml and then click on Add as Maven project.

Solution 8 - Maven

Very simple. NO PLUGINS.

Maven comes by default so you should press two times the shift key and write "maven".

Then import the maven project ".pom" and the bar cames automatically after selecting the pom.

Solution 9 - Maven

if you have a pom file in your project, right click the file, click "add as maven project"

This got it back for me. None of the other solutions worked. I had no warnings for unmanged poms, toggling toolbars did not help and the maven option just where it should be anywhere!

Solution 10 - Maven

It's a bit late, but I had the same problem with missing sidebars. At least in IDEA 2017.3 there is an icon on the bottom left of the screen that toggles the sidebars. That's how I got it back.

Solution 11 - Maven

If View → Tool Windows → Maven Projects doesnt work that means tools button is deselected

go to View -> Tool Buttons and select it . You should be able to Maven window now

Solution 12 - Maven

The question asked is how to show the sidebar, not show the Maven Plugin. On my version of Intellij this is enabled with the following:

View -> Appearance -> Tool Window Bars

Solution 13 - Maven

Right-click on your project > Add Framework Support > Maven

Solution 14 - Maven

Try with File-->Project structure --> Modules-> Remove Parent/existing modules and add parent/all modules again

Solution 15 - Maven

Weird but this works at times:

Disable File → Settings → Plugins → Maven Integration first and restart Intellij. Then re-enable it back and restart - this might fix the issue.

Solution 16 - Maven

Enable maven plugin first in

> File → Settings → Plugins → Maven

Also, make sure you enable Tool Buttons in

> View → Tool Buttons

Solution 17 - Maven

Check if at the bottom line of Intellij, it says "non-managed pom files found."

You can then "Add as a Maven Project"

Solution 18 - Maven

Make sure your Maven plugin is enabled as well. In my case, it was disabled for an unknown reason. To enable it: Settings → Plugins → Installed (Scroll down to Bundled section)

Solution 19 - Maven

If you not use Maven, can delete it.

open ProjectName.iml file in root of project of module.

then remove "org.jetbrains.idea.maven.project.MavenProjectsManager.isMavenModule="true"" from file.

save and reBuild project.

Solution 20 - Maven

Looks like my maven integration plugin got disabled.

Go to IntelliJ Idea --> Preferences and enable Maven integration plugin.

Looks like Intellij Idea disables dependent plugin also, when one of the plugins are disabled.

Solution 21 - Maven

Make sure that the home directory of the project is correct. I was creating Intellij project one level above the actual maven project folder and that's why the maven tool window wasn't showing.

Solution 22 - Maven

None above helped. In my case I had to ad Java SDK. It keeps disappearing for some reason. Right click on project folder -> Open Module settings -> Project in this window define SDK under SDK:

Maven toolbar appeared after doing that.

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionSnowflakeView Question on Stackoverflow
Solution 1 - Maveninvzbl3View Answer on Stackoverflow
Solution 2 - MavenIvaylo D. IvanovView Answer on Stackoverflow
Solution 3 - MavenSilasView Answer on Stackoverflow
Solution 4 - MavenSnowflakeView Answer on Stackoverflow
Solution 5 - Mavensandeep ErelliView Answer on Stackoverflow
Solution 6 - MavenvelocityView Answer on Stackoverflow
Solution 7 - MavenSreehari PullasettyView Answer on Stackoverflow
Solution 8 - MavenikerreinaView Answer on Stackoverflow
Solution 9 - MavenCodeMnkeView Answer on Stackoverflow
Solution 10 - MavenSuneView Answer on Stackoverflow
Solution 11 - Mavenkartick shawView Answer on Stackoverflow
Solution 12 - MavenScott LindnerView Answer on Stackoverflow
Solution 13 - MavenGouzView Answer on Stackoverflow
Solution 14 - MavenTejasView Answer on Stackoverflow
Solution 15 - MavenArijitView Answer on Stackoverflow
Solution 16 - MavenSamanView Answer on Stackoverflow
Solution 17 - MavenOnat KorucuView Answer on Stackoverflow
Solution 18 - MavenIvan KaloyanovView Answer on Stackoverflow
Solution 19 - MavenAli BagheriView Answer on Stackoverflow
Solution 20 - Mavenankit rawatView Answer on Stackoverflow
Solution 21 - MavenmindreaderView Answer on Stackoverflow
Solution 22 - MavenHrvojeView Answer on Stackoverflow