-1

I want to write this Groovy in Kotlin code in the build.gradle.kts file at the top-level project. How do I write it correctly?

build-script {
   ext {
       ...
       lifecycle_version = '2.5.1'
   }
}

1 Answers1

0

Hope this helps:

buildscript {
    ext {
        ...
        lifecycleVersion = "2.5.1"
    }
}
Chandresh Parmar
  • 176
  • 1
  • 10