Docker build doesn't like linking version numbers of plugins

This commit is contained in:
yairm210 2024-09-05 22:00:34 +03:00
parent c9f5b94993
commit c6fc6a2078

View File

@ -31,8 +31,10 @@ kotlin {
// Plugins used for serialization of JSON for networking
plugins {
id("io.gitlab.arturbosch.detekt").version("1.23.0-RC3")
kotlin("multiplatform") version com.unciv.build.BuildConfig.kotlinVersion
kotlin("plugin.serialization") version com.unciv.build.BuildConfig.kotlinVersion
// For some weird reason, the *docker build* fails to recognize linking to the shared kotlinVersion in plugins
// This is *with* gradle 8.2 downloaded according the project specs, no idea what that's about
kotlin("multiplatform") version "1.9.24"
kotlin("plugin.serialization") version "1.9.24"
}
allprojects {