mirror of https://github.com/apache/kafka.git
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:
parent
63b89658bc
commit
786867c2e1
|
@ -114,6 +114,10 @@ subprojects {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
tasks.withType(Test) {
|
||||||
|
maxParallelForks = Runtime.runtime.availableProcessors()
|
||||||
|
}
|
||||||
|
|
||||||
jar {
|
jar {
|
||||||
from '../LICENSE'
|
from '../LICENSE'
|
||||||
from '../NOTICE'
|
from '../NOTICE'
|
||||||
|
|
Loading…
Reference in New Issue