如何在Gradle for Android中获得SVN版本



我在资源中有字段(svn revision)。我怎么能得到svn修订在我的领域使用Gradle,而不是由我的手?

您可以修改下面的解决方案,如下所示,它将打印当前SVN的版本。

// File: build.gradle
task svninfo << {
    new ByteArrayOutputStream().withStream { os ->
        def result = exec {
            executable = 'svn'
            args = ['info']
            standardOutput = os
        }
        def outputAsString = os.toString()
        def matchLastChangedRev = outputAsString =~ /Last Changed Rev: (d+)/
        println "Latest Changed Revision #: ${matchLastChangedRev[0][1]}"
    }
}
// Example output for svn info:
// Path: .
// URL: http://svn.host/svn/project
// Repository Root: http://svn.host/svn/
// Repository UUID: 9de3ae54-a9c2-4644-a1a1-838cb992bc8e
// Revision: 33
// Node Kind: directory
// Schedule: normal
// Last Changed Author: mrhaki
// Last Changed Rev: 33
// Last Changed Date: 2010-09-03 14:25:41 +0200 (Fri, 03 Sep 2010)

试试这个

task svnversion {
  description 'Get SVN revision number.'
  new ByteArrayOutputStream().withStream { os ->
    def result = exec {
      executable = 'svnversion'
      standardOutput = os
    }
    ext.revid = os.toString()
  }
}

可以用

进行测试
task printsvn(description: 'Demonstrate calling svnversion task.') {
  println 'Implementation-Build #' + svnversion.revid
}
结果

$ gradle printsvn
: printsvn
Implementation-Build # 3071

BUILD SUCCESSFUL


相关内容

  • 没有找到相关文章

最新更新