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

后端 未结 17 2008
囚心锁ツ
囚心锁ツ 2020-12-29 00:28

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

<script

相关标签:
17条回答
  • 2020-12-29 01:26

    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".

    0 讨论(0)
  • 2020-12-29 01:26

    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.

    0 讨论(0)
  • 2020-12-29 01:27

    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.

    0 讨论(0)
  • 2020-12-29 01:33

    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.

    0 讨论(0)
  • 2020-12-29 01:33

    Run Maven goals You can use several ways to run Maven goals such as use the Run Anything window, use the context menu in the Maven tool window, or create a run configuration for one or several Maven goals.

    Run a Maven goal from the Run Anything window

    https://www.jetbrains.com/help/idea/work-with-maven-goals.html#run_goal

    https://www.journaldev.com/33645/maven-commands-options-cheat-sheet

    Maven Commands

    Let’s look into some popular and must know maven commands. We will use a sample Maven project to showcase the command output.

    1. mvn clean

    This command cleans the maven project by deleting the target directory. The command output relevant messages are shown below.

    0 讨论(0)
提交回复
热议问题