mirror of
https://github.com/SquidDev-CC/CC-Tweaked
synced 2025-01-18 21:22:56 +00:00
Enforce version bounds for the Kotlin stdlib
We were pulling in an ancient version of the jdk8 stdlib via kotlinx.coroutines, hence the conflict in versions.
This commit is contained in:
parent
db6b6fd173
commit
86b60855d6
@ -73,6 +73,7 @@ forgeSpi = { module = "net.minecraftforge:forgespi", version.ref = "forgeSpi" }
|
||||
guava = { module = "com.google.guava:guava", version.ref = "guava" }
|
||||
jetbrainsAnnotations = { module = "org.jetbrains:annotations", version.ref = "jetbrainsAnnotations" }
|
||||
jsr305 = { module = "com.google.code.findbugs:jsr305", version.ref = "jsr305" }
|
||||
kotlin-platform = { module = "org.jetbrains.kotlin:kotlin-bom", version.ref = "kotlin" }
|
||||
kotlin-coroutines = { module = "org.jetbrains.kotlinx:kotlinx-coroutines-core", version.ref = "kotlin-coroutines" }
|
||||
kotlin-stdlib = { module = "org.jetbrains.kotlin:kotlin-stdlib", version.ref = "kotlin" }
|
||||
netty-http = { module = "io.netty:netty-codec-http", version.ref = "netty" }
|
||||
|
@ -20,6 +20,7 @@ dependencies {
|
||||
implementation(libs.asm)
|
||||
|
||||
testFixturesImplementation(libs.slf4j)
|
||||
testFixturesApi(platform(libs.kotlin.platform))
|
||||
testFixturesApi(libs.bundles.test)
|
||||
testFixturesApi(libs.bundles.kotlin)
|
||||
|
||||
|
@ -155,7 +155,6 @@ dependencies {
|
||||
|
||||
testImplementation(testFixtures(project(":core")))
|
||||
testImplementation(libs.bundles.test)
|
||||
testImplementation(libs.bundles.kotlin)
|
||||
testRuntimeOnly(libs.bundles.testRuntime)
|
||||
|
||||
testModImplementation(testFixtures(project(":core")))
|
||||
|
Loading…
Reference in New Issue
Block a user