How do two builds belonging to two projects be run on single build engine simultaneously
One answer
No, the JBE only supports serial builds, so if you need to run multiple build simultaneously you need to create multiple build engines to service your requests.
This is definitely required if you trigger one build from another as this will create a deadlock without multiple engines to service the cascading build request(s).
-Sean