0

我定义了一个读取属性文件并更新某个字段的任务。我希望它仅在我执行“发布”时运行,而不是在“构建”期间运行。

我正在使用这个 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"
4

1 回答 1

1
  1. 您需要在任务定义中添加一个<<或一个块。doLast否则它将在配置阶段运行,几乎每次运行任何其他任务时都会运行。见这里:为什么我的 Gradle 任务总是在运行?

  2. 没有 gradle 方法可以直接从另一个任务调用/调用任务,就像您尝试uploadArchives使用dependsOnfinalizedBy设置任务依赖项一样。如果 uploadArchives 依赖于 restoreCurrentVersion ,每次调用 uploadArchives 时都会先调用 restoreCurrentVersion 。

于 2016-03-03T20:54:53.030 回答