我正在尝试提取没有PARENT目录的从属zip文件,在使用Gradle提取时排除某些文件。
这是我所得到的,但这种方法有效,但感觉不对,我希望有更好的方法来做到这一点
我正在提取的Zip文件
jar tf parent-folder-name.zip
parent-folder-name/bin/something.sh
parent-folder-name/bin/something.bat
parent-folder-name/lib/somelib.jar
选项1
task explodeToDist1(type: Copy) {
from zipTree(configurations.extractDist.singleFile)
exclude "**/lib/**"
eachFile {
def newPath = it.relativePath.segments[1..-1].join("/")
it.relativePath = RelativePath.parse(true, newPath)
}
into 'build/dist'
doLast {
def path = buildDir.getPath() + "/dist/parent-folder-name"
def dirToDelete = new File(path)
dirToDelete.deleteOnExit()
}
}
选项2
task explodeToDist2 << {
def unzipDir = new File('build/unzipTmp')
copy {
from zipTree(configurations.extractDist.singleFile)
into unzipDir
}
def rootZipDir = unzipDir.listFiles()[0]
fileTree(rootZipDir){
exclude "**/lib/**"
}.copy {
into 'src/dist'
}
unzipDir.deleteDir()
}
对我选项2 感觉更好,但我不确定在Gradle中是否有更好的方法可以做到这一点?
答案 0 :(得分:1)
似乎您的用例在gradle中不是以非常用户友好的方式支持。列出了here的相关功能请求。
此similar stackoverflow question还有一些建议看起来比您已有的选项更容易。
因为gradle与ant很好地集成,并且ant解压缩任务确实支持展平,所以你也可以依赖它。
有关详细信息,请参阅: