how to translate this from groovy to kotlin gradle...
# announcements
r
how to translate this from groovy to kotlin gradle dsl?
Copy code
dependencies {
    compile fileTree(dir: 'lib', include: ['*.jar'])
}
j
implementation(fileTree(mapOf("dir" to "lib", "include" to listOf("*.jar"))))
🙏 1
a
implementation(fileTree("lib") { include("*.jar") })
I believe this works too