我编写了一个 build.gradle 脚本来自动从给定的 URL 下载 hazelcast。之后文件被解压缩,只有 mancenter.war 以及原始 zip 文件保留在目标目录中。稍后,此 war 文件被引用用于码头运行。
尽管如此,虽然我为我的两个任务定义了 output.file,但是当我执行 gradle clean 时,这些文件并没有被清除。因此,我想知道我必须做什么才能在执行 gradle clean 时删除下载和解压缩的文件。这是我的脚本:
顺便说一句,如果您对如何增强脚本有任何建议,请不要犹豫告诉我!
apply plugin: "application"
dependencies {
compile "org.eclipse.jetty:jetty-webapp:${jettyVersion}"
compile "org.eclipse.jetty:jetty-jsp:${jettyVersion}"
}
ext {
distDir = "${projectDir}/dist"
downloadUrl = "http://download.hazelcast.com/download.jsp?version=hazelcast-${hazelcastVersion}"
zipFilePath = "${distDir}/hazelcast-${hazelcastVersion}.zip"
warFilePath = "${distDir}/mancenter-${hazelcastVersion}.war"
mainClass = "mancenter.MancenterBootstrap"
}
task downloadZip() {
outputs.file file(zipFilePath)
logging.setLevel(LogLevel.INFO)
doLast {
ant.get(src: downloadUrl, dest: zipFilePath)
}
}
task extractWar(dependsOn: downloadZip) {
outputs.file file(warFilePath)
logging.setLevel(LogLevel.INFO)
doLast {
ant.unzip(src: zipFilePath, dest: distDir, overwrite:"true") {
patternset( ) {
include( name: '**/mancenter*.war' )
}
mapper(type:"flatten")
}
}
}
task startMancenter(dependsOn: extractWar, type: JavaExec) {
main mainClass
classpath = sourceSets.main.runtimeClasspath
args warFilePath
}
更新
我找到了这个 link ,它描述了在调用清理任务时如何提供要删除的其他位置。基本上你可以做某事。像这样:
clean{
delete zipFilePath
delete warFilePath
}
最佳答案
我从源代码中得到确认,clean 任务只是删除了构建目录。它假定您要清理所有内容,并且所有任务输出都在此构建目录中的某个位置。
因此,最简单和最佳的做法是仅将输出存储在构建目录下的某处。
关于build - 清理任务不清理指定的outputs.file,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/26830284/