just realized that ktor eap-310+ depends on Kotlin...
# ktor
i
just realized that ktor eap-310+ depends on Kotlin nightly? didn't realize this until I ditched spring since it force downgrades the dependency
Could not find org.jetbrains.kotlin:kotlin-stdlib-common:1.6.20-M1-106.
and things like this for a full screen spam.
a
To fix it just add the Kotlin EAP repository:
Copy code
maven { url = uri("<https://maven.pkg.jetbrains.space/kotlin/p/kotlin/dev/>") }
🙏 2
i
works, thanks!