gpt4 book ai didi

gradle - gradle副本包括关闭不起作用

转载 作者:行者123 更新时间:2023-12-03 05:54:58 28 4
gpt4 key购买 nike

Gradle copySpec包含闭包不起作用:

def fileList = ["hello/world.xml"]

task foo(type: Copy) {
from (zipTree("/path/a.zip")) {
include { elem ->
fileList.contains(elem.path)
}
}

}

a.zip包含“hello / world.xml”。

信息:
Skipping task 'foo' as it has no source files and no previous output files.

最佳答案

copySpec闭包需要与复制任务一起使用。
您的代码只是复制任务,需要将目标复制到其中。

您的代码应更像这样:

def fileList = ["hello/world.xml"]

def filesToCopy = copySpec {
from (zipTree("/path/a.zip")) {
include { elem ->
fileList.contains(elem.path)
}
}
}

task foo(type: Copy) {
into 'build/target/docs'

with filesToCopy
}

有关更多信息,请参见API: https://docs.gradle.org/3.3/dsl/org.gradle.api.tasks.Copy.html

关于gradle - gradle副本包括关闭不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45514411/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com