I'm currently using the Maven Failsafe Plugin to do forked execution of tests (running multiple in parallel in separate JVMs).
I'm manually setting the forkCount variable based on the number of cores my machine has, but I'd like for this to be automatically determined by Maven, allowing me to end up with something like:
<forkCount>${system.numCores}</forkCount>
Is this possible?