build.gradle.kts
スクリプトからantタスクにアクセスするにはどうすればよいですか?特に、私はant.patch
タスクに興味があります。gradle-script-kotlinのantタスクの使用
これを拡張することはできますか?
task("patchSources", Patch::class) {
他のタスクから呼び出すことはできますか?
task("patchSources") {
doLast {
ant.patch(...)
}
}
私はGroovyでそれを行う方法を知っている:How do I apply a patch file in Gradle?