我创建tar.gz包。我正在使用gradle的distTar任务。我不知道如何覆盖默认bin文件夹。有人知道吗 这是我的任务。
plugins.withType(DistributionPlugin) {
distTar() {
applicationDistribution.from("cfg") {
into "cfg"
}
applicationDistribution.from("bin") {
into "bin"
}
eachFile { file ->
String path = file.relativePath
file.setPath(path.substring(path.indexOf("/") + 1, path.length()))
}
includeEmptyDirs = false
compression = Compression.GZIP
extension = 'tar.gz'
}
}