Hello everyone! Hey, I’m about to migrate some Gra...
# gradle
x
Hello everyone! Hey, I’m about to migrate some Gradle script to Kotlin DSL, but I just realized that Kotlin doesn’t support octals, so I’m wondering if somebody have solved this before (I can’t find anything so far). I would need to convert this task as part of the process:
Copy code
task distribution(type: Zip) {
  archiveName = "${project.name}.zip"
  dependsOn assemble

  dirMode 0755
  fileMode 0644

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