Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Compiler bump to 1.4.32 #1818

Merged
merged 2 commits into from
Apr 6, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
8 changes: 4 additions & 4 deletions gradle.properties
@@ -1,16 +1,16 @@
# Project Settings
dokka_version_base=1.4.30
dokka_version_base=1.4.32
dokka_publication_channels=bintray-kotlin-dev&space-dokka-dev
dokka_integration_test_parallelism=2
# Versions
kotlin_version=1.4.30
kotlin_version=1.4.32
coroutines_version=1.4.1
kotlinx_html_version=0.7.2
kotlin_plugin_version=202-1.4.30-release-IJ8194.7
kotlin_plugin_version=212-1.4.32-release-IJ1314
idea_version=202.7660.26
language_version=1.4
# Code style
kotlin.code.style=official
# Gradle settings
org.gradle.jvmargs=-Xmx4g -XX:MaxMetaspaceSize=1g
org.gradle.parallel=true
org.gradle.parallel=true
4 changes: 2 additions & 2 deletions kotlin-analysis/intellij-dependency/build.gradle.kts
Expand Up @@ -12,8 +12,8 @@ repositories {
maven(url = "https://www.jetbrains.com/intellij-repository/snapshots")
maven(url = "https://www.jetbrains.com/intellij-repository/releases")
maven("https://maven.pkg.jetbrains.space/kotlin/p/kotlin/kotlin-ide")
maven("https://kotlin.bintray.com/kotlin-ide-plugin-dependencies")
maven("https://jetbrains.bintray.com/intellij-third-party-dependencies")
maven("https://maven.pkg.jetbrains.space/kotlin/p/kotlin/kotlin-ide-plugin-dependencies")
maven("https://cache-redirector.jetbrains.com/intellij-dependencies")
}

val intellijCore: Configuration by configurations.creating
Expand Down
Expand Up @@ -98,6 +98,7 @@ class AnalysisEnvironment(val messageCollector: MessageCollector, val analysisPl

fun createCoreEnvironment(): KotlinCoreEnvironment {
System.setProperty("idea.io.use.nio2", "true")
System.setProperty("idea.ignore.disabled.plugins", "true")

val configFiles = when (analysisPlatform) {
Platform.jvm, Platform.common -> EnvironmentConfigFiles.JVM_CONFIG_FILES
Expand Down