How to get SVN revision in Gradle for Android?

时光毁灭记忆、已成空白 提交于 2019-12-24 13:32:11

问题


I have field (svn revision) in resource. How can I get svn revision in my field using by Gradle, that not to do that by my hands?


回答1:


You could modify the following solution, explained here, which prints out the current SVN revision.

// 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)



回答2:


Try this

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

You can test it with

task printsvn(description: 'Demonstrate calling svnversion task.') {
  println 'Implementation-Build #' + svnversion.revid
}

The results

$ gradle printsvn
:printsvn
Implementation-Build #3071

BUILD SUCCESSFUL

Total time: 0.776 secs



来源:https://stackoverflow.com/questions/17064597/how-to-get-svn-revision-in-gradle-for-android

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!