gpt4 book ai didi

zip - 无法在 Gradle 中创建 Zip 存档

转载 作者:行者123 更新时间:2023-12-02 18:27:31 25 4
gpt4 key购买 nike

我正在尝试创建一个简单的 Zip 存档,其中包含资源目录中的所有 javascript 文件

代码如下:

  task zip(type:Zip){
from ('resources/'){
include '*.js'
}
into 'resources'
}

由于某种原因,这似乎不起作用。我听到很多人说您只需要 frominto 来创建存档。有人可以帮我吗?我正在使用 Gradle v1.0。提前致谢。

最佳答案

尝试这样的事情(docs):

task zip(type:Zip) {
from ('resources/')
include '*.js'
into 'resources' // note that this specifies path *in* the archive
destinationDir file('dir') // directory that you want your archive to be placed in
}

关于zip - 无法在 Gradle 中创建 Zip 存档,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11495195/

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