Ideally all projects should rely on the same version of kotlin, kotlin-test, etc... Version are set within gradle.properties files. However, while this passes all versions to subprojects when running a top-level gradle task, these properties are not seen when running tasks within subprojects. In order to temporarily unblock more important work, the gradle.properties file is simply copied into each project. However, this is obviously far from ideal.
Ideally all projects should rely on the same version of kotlin, kotlin-test, etc... Version are set within
gradle.properties
files. However, while this passes all versions to subprojects when running a top-level gradle task, these properties are not seen when running tasks within subprojects. In order to temporarily unblock more important work, thegradle.properties
file is simply copied into each project. However, this is obviously far from ideal.