Jakub Trzebiatowski
06/20/2024, 11:06 AMbuild.gradle / build.gradle.kts file "disappear" in Gradle 8.x?
https://docs.gradle.org/current/userguide/multi_project_builds.htmlThomas Broyer
06/20/2024, 11:10 AMJakub Trzebiatowski
06/21/2024, 11:19 AMgradle init initializes the project this way; I think that in the past, it created a root build.gradle.kts ... Anyway, I created the file manually and Gradle picked it up.Jakub Trzebiatowski
06/21/2024, 11:25 AMplugins {
kotlin("jvm") version "2.0.0" apply false
}
Then, in each subproject-specific build script, we must declare it again without specifying the version.
plugins {
kotlin("jvm")
}