Hi, how to translate the Gradle Script Groovy ``` configurations { foo bar baz } ``` to ...
d
Hi, how to translate the Gradle Script Groovy
Copy code
configurations {
    foo
    bar
    baz
}
to Gradle Kotlin Script?
s
dagguh: Try this
Copy code
configurations {
    "foo" {
      }
}
👍 1
d
That did the trick, thanks!