https://kotlinlang.org logo
#gradle
Title
v

ValV

11/06/2018, 8:12 PM
One more question on migrating to Gradle Kotlin DSL. I had
Copy code
"Class-Path": configuration.compile.collect { it.getName() }.join(" ")
which I turned into
Copy code
"Class-Path" to configuration.joinToString(" ") { it.name }
is it correct? What does
.compile.collect
exactly mean in Groovy?