How can I run multiple eclipse startup files sequentially?

Here is an example script

I have three start files with names A, B, C. I want B to work after the end of A and C to start after the end of B.

Currently, if I run A, which takes a lot of time and starts B right after that, B starts execution in parallel with A.

Please, help

+4
source share
3 answers

Run configurations → Launch group.

Here you can add launch configurations and order them too! Found here

For a sequential start, do not forget to select the "Run start" action: "Wait until it ends"

+7
source

script (bash/Powershell/Ant/whatever) .

A, B C forking.

+1

Convert projects to modules and create a parent POM that builds in order.

With mvn install -pl :A, you can create each module individually or mvn install -rf :Bto build B and C in order (I use the command line notation in Eclipse, you can install them using the Maven launch editor).

+1
source

All Articles