-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathgradle.properties
36 lines (28 loc) · 1.24 KB
/
gradle.properties
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
propertiesPluginEnvironmentNameProperty=platformVersion
# Supported platforms: 241, 242
platformVersion=242
# Supported IDEs: IU
baseIDE=IU
ideToRun=
buildNumber=999999-SNAPSHOT
publishToken=token
publishChannel=dev
githubToken=token
showTestStatus=false
showStandardStreams=false
enableBuildSearchableOptions=false
compileNativeCode=true
org.gradle.jvmargs=-Xmx3g
# Enable Gradle Build Cache. It is also configured in settings.gradle.kts.
org.gradle.caching=false
systemProp.org.gradle.internal.repository.max.tentatives=10
systemProp.org.gradle.internal.http.connectionTimeout=120000
systemProp.org.gradle.internal.http.socketTimeout=120000
# Since kotlin 1.4, stdlib dependency is added by default by kotlin gradle plugin.
# But we don't need it because all necessary kotlin libraries are already bundled into IDE.
# See https://kotlinlang.org/docs/reference/using-gradle.html#dependency-on-the-standard-library for more details
kotlin.stdlib.default.dependency=false
# Since kotlin 1.8.20, Gradle Kotlin plugin may produce OOM during compilation
# See https://plugins.jetbrains.com/docs/intellij/using-kotlin.html#incremental-compilation
# and https://youtrack.jetbrains.com/issue/KT-57757 for more details
kotlin.incremental.useClasspathSnapshot=false