Dumitru Preguza
08/23/2025, 3:49 PMCould not find org.jetbrains.kotlinx:kotlinx-rpc-compiler-plugin-k2:2.2.10-0.9.1
It feels counterintuitive that updating the language version would affect the libraries. Shouldn’t it be backward compatible?Alexander Sysoev
08/23/2025, 4:33 PMDumitru Preguza
08/23/2025, 4:36 PMneworldlt
08/23/2025, 7:24 PMsubprojects {
configurations.all {
val rpcVersion = libs.versions.kotlinRpc.get()
if (rpcVersion != "0.9.1") error("Remove kotlinx-rpc-compiler version hack")
val kotlinRpcCompilerVersion = "2.2.0-$rpcVersion"
resolutionStrategy.force("org.jetbrains.kotlinx:kotlinx-rpc-compiler-plugin-k2:$kotlinRpcCompilerVersion")
resolutionStrategy.force("org.jetbrains.kotlinx:kotlinx-rpc-compiler-plugin-backend:$kotlinRpcCompilerVersion")
resolutionStrategy.force("org.jetbrains.kotlinx:kotlinx-rpc-compiler-plugin-cli:$kotlinRpcCompilerVersion")
resolutionStrategy.force("org.jetbrains.kotlinx:kotlinx-rpc-compiler-plugin-common:$kotlinRpcCompilerVersion")
}
}
neworldlt
08/23/2025, 7:25 PMAlexander Sysoev
08/25/2025, 12:43 PM