-
Notifications
You must be signed in to change notification settings - Fork 59
Expand file tree
/
Copy pathgradle.properties
More file actions
64 lines (53 loc) · 2.37 KB
/
gradle.properties
File metadata and controls
64 lines (53 loc) · 2.37 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
#
# Copyright (c) 2026. JetBrains s.r.o.
# Use of this source code is governed by the MIT license that can be found in the LICENSE file.
#
rootProject.name=lets-plot
# Gradle
org.gradle.jvmargs=-Xmx4g
org.gradle.warning.mode=all
# Kotlin
kotlin.daemon.jvmargs=-Xmx4g
kotlin.code.style=official
kotlin.native.cacheKind=none
# for better native stacktraces. Disabled due to build error on Windows:
# ld.lld: error: undefined symbol: Kotlin_getSourceInfo_libbacktrace
#kotlin.native.binary.sourceInfoType=libbacktrace
kotlin.mpp.stability.nowarn=true
kotlin.jvm.target.validation.mode=error
# A compileOnly dependency is used in targets: Kotlin/JS.
# Using compileOnly dependencies in these targets is not currently supported
# because compileOnly dependencies must be present during the compilation of projects that depend on this project.
kotlin.suppressGradlePluginWarnings=IncorrectCompileOnlyDependencyWarning
# Versions
kotlin.version=2.3.10
kotlinLogging.version=7.0.14
slf4j.version=2.0.13
assertj.version=3.26.3
hamcrest.version=1.3
mockito.version=2.23.4
mockk.version=1.9.3
# Beware of the versions in the IDEA platform (a mismatch may affect LP in SciView PyCharm plugin)
# The list of 3rd party libraries used in the IDEA platform: https://www.jetbrains.com/legal/third-party-software/?product=IIU
# IDEA 2025.3.* bundles ktor v3.1.3, but to make livemap export work we need to upgrade it to v3.4.1:
# https://youtrack.jetbrains.com/issue/KTOR-9267
# ktor runtime compatibility can be tested with PlotSpecDebugger, see file://REPO_ROOT/demo/plot-jvm/build.gradle.kts:13
ktor.version=3.1.3
kotlinx.atomicfu.version=0.31.0
kotlinx.coroutines.version=1.8.0
kotlinx.datetime.version=0.6.2
kotlinx.html.version=0.12.0
kotlinx.io.version=0.8.2
kotlinx.browser.version=0.5.0
# IDEA platform Batik: 1.16.0-35 (https://jetbrains.team/p/ij/repositories/ultimate/files/master/.idea/libraries/batik_transcoder.xml)
batik.version=1.17
# A transitive dependency of Batik v1.17 is commons-io:2.11.0,
# which was found to have a security vulnerability: https://github.com/JetBrains/lets-plot/issues/1231.
# So we need to upgrade it:
# sync to the version used in the IDEA platform (See "Apache Commons IO" in https://www.jetbrains.com/legal/third-party-software/?product=IIU).
# IDEA bundles v2.18.0
commons-io.version=2.18.0
# IDEA bundles v1.3.0-jb.8
weisj.jsvg.version=1.3.0
# Testing
include.performance.tests=false