forked from intellij-rust/intellij-rust
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgradle.properties
32 lines (24 loc) · 991 Bytes
/
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
propertiesPluginEnvironmentNameProperty=platformVersion
# Supported platforms: 223, 231
platformVersion=223
# Supported IDEs: idea, clion
baseIDE=clion
patchVersion=190
buildNumber=SNAPSHOT
publishToken=token
publishChannel=dev
githubToken=token
showTestStatus=false
showStandardStreams=false
enableBuildSearchableOptions=false
compileNativeCode=true
org.gradle.jvmargs=-Xmx15g
# Enable Gradle Build Cache. It is also configured in settings.gradle.kts.
org.gradle.caching=true
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