blob: 26c6faab9226fec6b15718624f5d0351579cf2fc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
# Specifies the JVM arguments used for the daemon process.
# The setting is particularly useful for tweaking memory settings.
# Less than 2G definitely slows things down. Increased to 3G due to OOM issues on ci-builds.apache.org.
# -XX:+HeapDumpOnOutOfMemoryError
org.gradle.jvmargs=-Xmx3G -Dfile.encoding=UTF-8
# Activating will be much faster, but break the build of 'poi-ooxml-lite'
org.gradle.caching=true
# Modularise your project and enable parallel build
org.gradle.parallel=true
# Enable configure on demand.
org.gradle.configureondemand=true
|