Just sharing one of the findings hopefully will be helpful since as mention [here](https://github.com/bernaferrari/GradleKotlinConverter#-things-it-still-cant-do) settings.gradle file ```groovy dependencyResolutionManagement { versionCatalogs { libs { version('kotlinVersion', '1.8.0') plugin('kotlin.jvm', 'org.jetbrains.kotlin.jvm').versionRef('kotlinVersion') } } } ``` Working conversion ```kotlin dependencyResolutionManagement { versionCatalogs { create("libs") { // <----------- This is main conversion version("kotlinVersion", "1.8.0") plugin("kotlin.jvm", "org.jetbrains.kotlin.jvm").versionRef("kotlinVersion") } } } ```