I thought in spring boot 2.0 I do not need to over...
# spring
c
I thought in spring boot 2.0 I do not need to override
kotlin.version
property and the version will be resolved from the plugin. Unfortunately this doesn't happen and I still have to do whole
Copy code
gradle.rootProject {
	// this is to tell Spring what version of kotlin is used
	ext["kotlin.version"] = libs.kotlinVersion
}
in
settings.gradle