我有一个gradle构建脚本,我在其中使用了' Zip'任务直接从源目录生成zip存档。
除了将源目录结构中的所有文件复制到zip存档之外,我还在寻找一种方法来包含一个不在源目录中的动态生成的文件。
你们知道我怎么做吗?
这是我想要做的伪代码:
task('archive', type: Zip) {
...
from 'source'
newFile('dynamically-generated.txt', 'dynamic file content')
}
以下是源和目标结构:
[i71178@bddev01-shell01 ~]$ tree source/
source/
├── file1.txt
├── file2.txt
└── file3.txt
0 directories, 3 files
[i71178@bddev01-shell01 ~]$ unzip -l destination.zip
Archive: destination.zip
Length Date Time Name
--------- ---------- ----- ----
0 02-26-2016 16:56 source/
0 02-26-2016 16:56 source/file2.txt
0 02-26-2016 16:56 source/dynamically-generated.txt
0 02-26-2016 16:56 source/file1.txt
0 02-26-2016 16:56 source/file3.txt
--------- -------
0 5 files
答案 0 :(得分:0)
结合我上面的评论和你的getTemporaryDir评论:
task generateThenZip()<<{
def tempDir = getTemporaryDir()
newFile("$tempDir/dynamically-generated.txt", 'dynamic file content')
zip{
from 'source'
from tempDir
}
}
答案 1 :(得分:0)
这就是我最终做的事情:
subprojects {
apply plugin: 'myPlugin'
//The 'build' task is set up by the plugin
build {
//Customization to keep consistent with artifacts being currently generated.
doFirst {
new File(getTemporaryDir(), 'artifact-fullname.txt').text = "${project.name}-${project.version}\n"
}
archiveName = "${project.name}.${project.build.extension}"
from getTemporaryDir()
}
}
谢谢!
答案 2 :(得分:0)
我已经很容易在 6.6.1版上实现了这一目标
只需在from
部分中创建文件即可。
distributions {
main {
contents {
into("/") {
from {
if (!buildDir.exists()) {
buildDir.mkdir()
}
def f = new File("$buildDir/all")
f.text = "project_version: ${project.version}\n"
f
}
}
...
}
}
}
顺便说一句。我认为$buildDir
比/tmp