-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathgradle.properties
More file actions
37 lines (28 loc) · 1.31 KB
/
gradle.properties
File metadata and controls
37 lines (28 loc) · 1.31 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
##############################################################
# OVERRIDE THESE SETTING IN /userconfig/user.gradle.properties
##############################################################
# note: do not embed ${user.home} type options in paths - these will not be expanded at runtime
# run ./gradlew with no parameters to see full usage and options
# Paths (relative to ROOT/gradle)
lib=lib
dist=dist
pythonSrc=source
javaForPythonSrc=java_code_for_python/src
# Signing (set passphrase using keypass=xxx in /userconfig/user.gradle.properties)
privkeyid=99
extprivkeyfile=userconfig/priv_key
extpubkeyfile=userconfig/pub_key
# Allows extra debug logging - does not affect builds
debug=false
# Disable Gradle configuration cache:
# This build uses dynamic source sets, file-system probing, and JavaExec tasks that are not configuration-cache safe.
# Enabling the cache can cause incorrect task wiring and hard-to-diagnose build failures.
org.gradle.configuration-cache=false
# Force sequential builds:
org.gradle.parallel=false
# Gradle daemon JVM memory (1GB) and force UTF-8 encoding for consistent builds
org.gradle.jvmargs=-Xmx1024M -Dfile.encoding=UTF-8
# Kotlin compiler daemon JVM memory (1GB heap)
kotlin.daemon.jvmargs=-Xmx1024M
# Use official Kotlin code style (IDE formatting preference)
kotlin.code.style=official