Hello everyone! I’m trying to “translate” this pie...
# gradle
x
Hello everyone! I’m trying to “translate” this piece of a Gradle script (based on https://docs.aws.amazon.com/lambda/latest/dg/create-deployment-pkg-zip-java.html) into Kotlin DSL:
Copy code
task distribution(type: Zip) {
  archiveName = "${project.name}.zip"
  dependsOn assemble

  from compileJava
  from processResources
  into("lib") {
    from configurations.runtimeClasspath
  }
}