Enable parallel builds by default

Previously, all tasks in the build were run sequentially. This
commit updates Gradle's properties to build them in parallel where
possible. When using the daemon (recommended) its default max heap is
not sufficient for the demands on a parallel build, therefore this
commit also increases the daemon's max heap.

See gh-23620
This commit is contained in:
Andy Wilkinson 2019-09-11 09:57:04 +01:00 committed by Stephane Nicoll
parent cfae20f97d
commit 9de4c4aefb
1 changed files with 3 additions and 1 deletions

View File

@ -1,2 +1,4 @@
version=5.2.0.BUILD-SNAPSHOT
org.gradle.caching=false
org.gradle.parallel=true
org.gradle.jvmargs=-Xmx1536M