Borek Bernard
Borek Bernard

Reputation: 53331

How to run multiple build configurations at once in IntelliJ IDEA

I have a project that has a "standard user" and "manager" build configurations. (The code is mostly same but some aspects of the build are different.)

When I'm about to test the application, I need to start both configurations, user and manager. Currently, I do that manually but isn't there a way to start both configurations automatically together?

Upvotes: 1

Views: 918

Answers (1)

maba
maba

Reputation: 48095

You can let one of the configurations start the other one:

enter image description here

Upvotes: 1

Related Questions