I've updated from gradle 4.7 to 4.10.2, all projec...
# gradle
c
I've updated from gradle 4.7 to 4.10.2, all projects work ok except one which has buildSrc. I get this weird error:
Copy code
Execution failed for task ':buildSrc:compileKotlin'.
> Could not resolve all files for configuration ':buildSrc:kotlinCompilerPluginClasspath'.
   > Could not find org.jetbrains.kotlin:kotlin-scripting-compiler-embeddable:1.2.61.
     Searched in the following locations: file:/home/user/.gradle/caches/4.10.2/embedded-kotlin-repo-1.2.61-2/repo/org/jetbrains/kotlin/kotlin-scripting-compiler-embeddable/1.2.61/kotlin-scripting-compiler-embeddable-1.2.61.jar
     Required by:
         project :buildSrc
   > Could not find org.jetbrains.kotlin:kotlin-sam-with-receiver:1.2.61.
     Required by:
         project :buildSrc
build.gradle.kts of the buildSrc:
Copy code
plugins {
	`kotlin-dsl`
}
and in its src/kotlin there is only one file which defines dependency version constants.
Copy code
object Versions {
    const val someVer = "1.0.0"
}