Trying to add buildSrc to manage dependencies getting the following error: Error while evaluating property 'filteredArgumentsMap' of task ':buildSrc:compileKotlin'

1

There are 1 best solutions below

0
On BEST ANSWER

Add this

repositories {
    mavenCentral()
}

in the build.gradle.kts file after the plugins block to solve.