Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ subprojects {
// mappings ("net.fabricmc:yarn:${rootProject.yarn_version}")
// 使用 yarn 會導致無法編譯 forge 版本,因此暫時先用 mojang 官方映射
implementation(group = "org.jetbrains.kotlin", name = "kotlin-stdlib-jdk8", version = "1.8.21")
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.6.4")
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.3")
}

// Set up platform subprojects (non-common subprojects).
Expand Down
2 changes: 1 addition & 1 deletion forge/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ dependencies {

forgeRuntimeLibrary(kotlin("stdlib-jdk8", "1.8.21"))
forgeRuntimeLibrary(kotlin("reflect", "1.8.21"))
forgeRuntimeLibrary("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.6.4")
forgeRuntimeLibrary("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.3")

"common"(project(path = ":common", configuration = "namedElements")) { isTransitive = false }
bundle(project(path = ":common", configuration = "transformProductionForge")) { isTransitive = false }
Expand Down