0

short question, is there a way to build two java projects in eclipse in a special order? the first project is a server, the second a gui. so, at first the server should be compiled/run than the gui. couldn´t find a way in eclipse. thanks.

2 Answers2

1

Specify server project in gui's project Properties/Java Build Path. When you attempt to build gui it will check and re-build server if needed.

Germann Arlington
  • 3,315
  • 2
  • 17
  • 19
  • but i need the server to be startet/executed(before running the gui), if i debug/run the gui... i need this just for debug purposes –  Jul 31 '12 at 15:48
  • You may need to create an ant script to do that. Or try http://stackoverflow.com/questions/4053265/eclipse-running-multiple-launch-configurations-at-once – Germann Arlington Jul 31 '12 at 15:53
0

found it. launch groups are the solution...