We build in maven multiple projects (let\'s name them A,B,C). Project A uses .jar of project B which uses .jar of project C.
I am modifying codes of all A/B/C projec
For who uses Gradle can also avail the same:
Go to:
1. View --> Tool Windows --> Gradle
2. Click on the +
button and add your build.gradle
file
Use the button for the add maven projects and go inside the folder of the project. Then, select the pom.xml
file and add them in the IntelliJ.
There is no need to move entire projects to a module. The use case for module is a bit finer grained than as a project container.
To open multiple projects in the same window:
File -> Open Project
Select open in this window.
Check box that says add to current project.
Yes, your intuition was good. You shouldn't use three instances of intellij. You can open one Project and add other 'parts' of application as Modules. Add them via project browser, default hotkey is alt+1
You can use Armory plugin which makes switching between projects comfortable. The default shortcut for Project List is Alt + A.
By default currently opened projects are displayed at the top of this list (with bold style).
Open preference -> appearance & behaviour -> System settings -> select (open project in new window) then apply.
Then you could open and edit multiple projects.