KAFKA-2438; add maxParallelForks to build.gradle to speedup tests.

Author: Sriharsha Chintalapani <harsha@hortonworks.com>

Reviewers: Gwen Shapira

Closes #143 from harshach/KAFKA-2438
This commit is contained in:
Sriharsha Chintalapani 2015-08-16 20:53:39 -07:00 committed by Gwen Shapira
parent 63b89658bc
commit 786867c2e1
1 changed files with 4 additions and 0 deletions

View File

@ -114,6 +114,10 @@ subprojects {
}
}
tasks.withType(Test) {
maxParallelForks = Runtime.runtime.availableProcessors()
}
jar {
from '../LICENSE'
from '../NOTICE'