https://kotlinlang.org logo
#kobalt
Title
g

groostav

01/24/2018, 11:01 PM
https://github.com/gradle/kotlin-dsl/blob/master/samples/ant/build.gradle.kts containing
Copy code
ant.withGroovyBuilder {
    "zip"("destfile" to "$buildDir/archive.zip") {
        "fileset"("dir" to "src") {
            "include"("name" to "**/*.xml")
            "include"("name" to "**/*.txt")
        }
    }
}