I have a very simple question, but I Googled and somehow I couldn\'t find it. I was wondering how can I get the
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".
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.
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.
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.
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.
This command cleans the maven project by deleting the target directory. The command output relevant messages are shown below.