gpt4 book ai didi

Gradle,提取依赖项 zip 并使用其文件中的内容?

转载 作者:行者123 更新时间:2023-12-01 12:20:22 25 4
gpt4 key购买 nike

我有一个依赖于另一个项目的 Gradle 构建项目。我的项目应该从另一个项目中提取一个 zip 存档并提取存档。存档中的一个文件称为“name.txt”,其中包含一个字符串,我需要将其作为“构建”任务中的参数传递。

def unzippedDir = file('build/dependencies/unzippedDir').getAbsolutePath()

configurations {
zipArchive
}

dependencies {
ziparchive "<path>"
}

task unzip(type:Copy) {
into unzippedDir from zipTree(configurations.zipArchive.singleFile)
}

task build {
dependsOn unzip
def name = new File(unzippedDir + '/name.txt').text
// <the test of the build steps that uses the "name" variable>
}

但是我收到“name.txt”的“无文件或目录”错误。难道我做错了什么?

但是,我在提取的目录中看到的是,zip 存档中只有一个文件最终出现在 unzippedDir 中。即使另一个文件存在,“name.txt”也不存在。这是否意味着我在解压缩任务中做错了什么?

最佳答案

尝试这个:

并检查您的配置名称,因为那里有拼写错误。

def unzippedDir = "$buildDir/dependencies/unzippedDir" 

task unzip(type: Copy) {
configurations.zipArchive.asFileTree.each {
from(zipTree(it))
}
into unzippedDir
}

build.dependsOn unzip

关于Gradle,提取依赖项 zip 并使用其文件中的内容?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44849678/

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