forked from Kotlin/kotlinx-rpc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgradle.properties
27 lines (20 loc) · 928 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
#
# Copyright 2023-2024 JetBrains s.r.o and contributors. Use of this source code is governed by the Apache 2.0 license.
#
kotlin.code.style=official
kotlin.js.compiler=ir
kotlin.native.ignoreDisabledTargets=true
kotlin.native.ignoreIncorrectDependencies=true
# for 1.7.* versions
kotlin.mpp.stability.nowarn=true
kotlin.daemon.jvmargs=-Xmx6g -XX:+HeapDumpOnOutOfMemoryError
kotlin.daemon.useFallbackStrategy=false
org.gradle.jvmargs=-Xmx6g -XX:+HeapDumpOnOutOfMemoryError -XX:+UseParallelGC -XX:MaxMetaspaceSize=768m
org.gradle.daemon=true
org.gradle.parallel=true
org.gradle.workers.max=6
org.gradle.caching=true
# there is the problem with this one. Basically kspKotlin* tasks are skipped for some reason sometimes on CI
#org.gradle.unsafe.configuration-cache=true
# development mode for kotlinx.rpc gradle plugin. Uses local project paths to apply ksp and compiler plugins
kotlinx.rpc.plugin.internalDevelopment=true