I have an intellij project with several modules. Some of the modules should be run as servers. For every server(module) i have a run configuration.
Can i bundle thos
The previously accepted answer does not work for running multiple servers or any scripts which do not terminate.
The good news is that now you can use the Compound run configuration which is build natively into the program to execute multiple servers simultaneously which do not terminate.
In fact, even the MultiRun plugin states on their GitHub page that they recommend to use the Compound run configuration over their plugin.
Official IntelliJ IDEA documentation
Here's what the options looks like:
Steps to get it working:
Compound configuration.All the individual configs will run simultaneously. Perfect for servers and other threads which do not exit!