<https://github.com/gradle/kotlin-dsl/blob/master/...
# kobalt
g
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")
        }
    }
}