I have an issue with IntelliJ. It doesn\'t show any folders in my project view on the left. My setting is \"View As: Project\" How can I manage it so that the folders and p
I tried all the solutions above, nothing worked.
Java-Maven project
My problem: In my case i had java-maven project. And the problem was that Idea by default uses it's bundled maven for projects(or anyone you trying to open). I noticed that bundled maven keeps downloading dependencies forever, i.e you never see your sources folder.
Solution:
So to configure that, one needs to configure Idea to use maven(mvn) which is installed on the machine for all projects by default.
To do that, in the beginning when Idea still did not open any projects...there is a configure button. There chose build tools. Then maven, there you will see dropdown list where you can choose local maven.
In short: Configure/Build Tools/Maven/DropdownMenu
(My OS: linux branch)
Hope that helps