What would this solution look like in the Kotlin D...
# gradle
n
What would this solution look like in the Kotlin DSL for Gradle? https://stackoverflow.com/a/32567525/7682196
Copy code
jar {
  manifest {
    attributes(
      'Class-Path': configurations.compile.collect { it.getName() }.join(' '),
      'Main-Class': 'hello.HelloWorld'
    )
  }
}