Skip to content

Commit

Permalink
Fix stupid windows bug... again.
Browse files Browse the repository at this point in the history
  • Loading branch information
gchallen committed May 7, 2020
1 parent ca76312 commit fa18787
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion core/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import java.io.StringWriter
import java.util.Properties

group = "com.github.cs125-illinois"
version = "2020.5.2"
version = "2020.5.3"

plugins {
kotlin("jvm")
Expand Down
6 changes: 3 additions & 3 deletions core/src/main/kotlin/Kompile.kt
Original file line number Diff line number Diff line change
Expand Up @@ -145,13 +145,13 @@ private fun kompile(
configureExplicitContentRoots(kompilationArguments.arguments)
}

// Silence scaring warning on Windows
setIdeaIoUseFallback()

val environment = KotlinCoreEnvironment.createForProduction(
rootDisposable, configuration, EnvironmentConfigFiles.JVM_CONFIG_FILES
)

// Silence scaring warning on Windows
setIdeaIoUseFallback()

val psiFileFactory = PsiFileFactory.getInstance(environment.project) as PsiFileFactoryImpl
val psiFiles = source.sources.map { (name, contents) ->
val virtualFile = LightVirtualFile(name, KotlinLanguage.INSTANCE, contents)
Expand Down
Original file line number Diff line number Diff line change
@@ -1 +1 @@
version=2020.5.2
version=2020.5.3
4 changes: 2 additions & 2 deletions server/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import java.io.StringWriter
import java.util.Properties

group = "edu.illinois.cs.cs125"
version = "2020.5.2"
version = "2020.5.3"

plugins {
kotlin("jvm")
Expand All @@ -24,7 +24,7 @@ dependencies {
implementation(project(":core"))
implementation(kotlin("stdlib"))
implementation("io.ktor:ktor-server-netty:$ktorVersion")
implementation("org.mongodb:mongodb-driver:3.12.3")
implementation("org.mongodb:mongodb-driver:3.12.4")
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.3.5")
implementation("com.squareup.moshi:moshi-kotlin-codegen:1.9.2")
implementation("com.github.cs125-illinois:ktor-moshi:1.0.3")
Expand Down
Original file line number Diff line number Diff line change
@@ -1 +1 @@
version=2020.5.2
version=2020.5.3

0 comments on commit fa18787

Please sign in to comment.