我定义了一个读取属性文件并更新某个字段的任务。我希望它仅在我执行“发布”时运行,而不是在“构建”期间运行。
我正在使用这个 gradle-release 插件进行发布:https ://github.com/researchgate/gradle-release
此插件在每个版本中将 gradle.properties 文件中的版本更新为下一个版本。我还需要保留当前版本号,因此我编写了这个方法。
但是,每当我进行构建时,都会执行此任务。我试图将其更改为一种方法,并在“uploadArchives”中调用该方法,我认为该方法仅在“发布”期间运行。然而没有结果。它会在每次构建时继续执行!
如何将它从“构建”中排除并仅在发布时调用它?
这是任务和一些代码片段:
task restoreCurrentVersion {
try {
String key = 'currentVersion'
File propertiesFile = project(':commons').file("gradle.properties")
String currentVersion = project(':commons').version
this.ant.replaceregexp(file: propertiesFile, byline: true) {
regexp(pattern: "^(\\s*)$key(\\s*)=(\\s*).+")
substitution(expression: "\\1$key\\2=\\3$currentVersion")
}
} catch (BuildException be) {
throw new GradleException('Unable to write version property.', be)
}
}
uploadArchives {
repositories.mavenDeployer {
repository(url: 'file://Users/my.home/.m2/repository/')
}
// restoreCurrentVersion() //Uncommenting this makes the method (when converted the above task to a method) to execute always
}
createReleaseTag.dependsOn uploadArchives
ext.'release.useAutomaticVersion' = "true"