-
Notifications
You must be signed in to change notification settings - Fork 14
/
gradle.properties
31 lines (24 loc) · 1.09 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
# Any property can be overwritten from command-line via
# -P<propertyName>=<value>
javaVersion=17
dotnetPluginId=Rider.Plugins.EfCore
riderPluginId=com.jetbrains.rider.plugins.efcore
# Should be bigger than actual version bundled via snapshot to not break local development
pluginVersion=999.0.0-local
rdVersion=2024.3-pre2
rdKotlinVersion=1.9.23
intellijPlatformGradlePluginVersion=2.0.0-beta8
gradleJvmWrapperVersion=0.14.0
buildConfiguration=Debug
publishToken="_PLACEHOLDER_"
publishChannel=default
# Possible values (minor is omitted):
# Release: 2020.2
# Nightly: 2020.3-SNAPSHOT
# EAP: 2020.3-EAP2-SNAPSHOT
productVersion=2025.1-SNAPSHOT
# Kotlin 1.4 will bundle the stdlib dependency by default, causing problems with the version bundled with the IDE
# https://blog.jetbrains.com/kotlin/2020/07/kotlin-1-4-rc-released/#stdlib-default
kotlin.stdlib.default.dependency=false
# Fix for Kotlin 1.8.20 uses a new incremental compilation approach that can't handle large JAR files, resulting in an OutOfMemory exception in the compileKotlin task.
kotlin.incremental.useClasspathSnapshot=false