I'm running unit test using ant
<target name="test" depends="tomcatDeploy" description="Build and run tests">
<ant dir="${aDir}" target="test"/>
<ant dir="${bDir}" target="test"/>
<ant dir="${cDir}" target="test"/>
<ant dir="${dDir}/ExtFramework" target="test"/>
</target>
and I want to run them all on the same VM - otherwise I get a lot of overhead in the creation of the jvm & re-creation of statics and so forth.
Is there a way to do this?