forked from LinkedInAttic/scanns
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathgradle.properties
20 lines (15 loc) · 863 Bytes
/
gradle.properties
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# Copyright 2018 LinkedIn Corporation. All rights reserved. Licensed under the BSD-2 Clause license.
# See LICENSE in the project root for license information.
# long-running Gradle process speeds up local builds
# to stop the daemon run './gradlew --stop'
org.gradle.daemon=true
# Gradle will run tasks from subprojects in parallel
# Higher CPU usage, faster builds
org.gradle.parallel=false
# Configures only relevant projects to speed up the configuration of large projects
# Useful when specific project/task is invoked (e.g ./gradlew :photon-ml:build)
org.gradle.configureondemand=true
# Increase heap size for Gradle VM
org.gradle.jvmargs=-Xmx3072m -XX:MaxPermSize=512m -XX:+HeapDumpOnOutOfMemoryError -Dfile.encoding=UTF-8
# Allows generation of idea/eclipse metadata for a specific subproject and its upstream project dependencies
ide.recursive=true