Run parallel test task using gradle
We use Junit as a test framework. We have many projects. We use gradle(Version 1.12) as a build tool. To run the unit test parallelly using gradle we use the bellow script in every projects under test task. maxParallelForks = Runtime.runtime.availableProcessors() Ex: test { maxParallelForks = Runtime.runtime.availableProcessors() } We maintain the single gradle.properties file also. Is it possible to define test.maxParallelForks = Runtime.runtime.availableProcessors() in gradle.properties file rather than defining in each build.gradle files under test task? Peter Niederwieser $rootDir/build