使用gradle-script-kotlin中的ant任务

时间:2016-11-24 17:12:47

标签: ant kotlin patch gradle-kotlin-dsl

如何从build.gradle.kts脚本访问ant任务?特别是,我对ant.patch任务很感兴趣。

我可以延长它吗?

task("patchSources", Patch::class) {

我可以从其他任务中调用它吗?

task("patchSources") {
    doLast {
        ant.patch(...)
    }
}

我知道如何在Groovy中执行此操作:How do I apply a patch file in Gradle?

2 个答案:

答案 0 :(得分:1)

这对我有用:

import org.apache.tools.ant.taskdefs.Patch

val patchConfigTask = task("patchConfig") {
    dependsOn(unzipTask)    

    doLast {
        val resources = projectDir.resolve("src/main/resources")
        val patchFile = resources.resolve("config.patch")

        Patch().apply {
            setPatchfile(patchFile)
            setDir(buildDir.resolve("config/"))
            setStrip(1)  // gets rid of the a/ b/ prefixes
            execute()
        }
    }
}

我不确定这是否是一种正确的做法。

答案 1 :(得分:0)

AntBuilder来自Groovy的AntBuilder。您可以使用ant.patch()将动态方法调用从像invokeMethod这样的groovy转换为Kotlin,并提供所需的任务作为第一个参数,并将属性绑定为第二个参数中的映射。

例如,对于 Patch 用例(available properties documentation),Kotlin可能如下所示:

val patchSources by tasks.creating {
  doLast {
    ant.invokeMethod("patch", mapOf(
        "patchfile" to patchFile,
        "dir" to configDir,
        "strip" to 1
    ))
  }
}