2015-10-31 04:13:41 +00:00
|
|
|
// Top-level build file where you can add configuration options common to all sub-projects/modules.
|
|
|
|
|
|
|
|
buildscript {
|
|
|
|
repositories {
|
2017-11-27 01:12:23 +00:00
|
|
|
google()
|
2024-01-24 15:39:09 +00:00
|
|
|
mavenCentral()
|
2015-10-31 04:13:41 +00:00
|
|
|
}
|
|
|
|
dependencies {
|
2024-01-24 15:39:09 +00:00
|
|
|
classpath 'com.android.tools.build:gradle:8.2.2'
|
2015-10-31 04:13:41 +00:00
|
|
|
|
|
|
|
// NOTE: Do not place your application dependencies here; they belong
|
|
|
|
// in the individual module build.gradle files
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-01-24 15:39:09 +00:00
|
|
|
def parseGitVersion() {
|
|
|
|
def major = 0
|
|
|
|
def minor = 0
|
|
|
|
def patch = 0
|
|
|
|
def postfix = 'UNKNOWN'
|
|
|
|
def hash = ''
|
|
|
|
def output = 'git describe --long --tags --dirty --always'.execute().text.trim()
|
|
|
|
(output =~ /^v(\d+)\.(\d+)\.(\d+)-(\d+)-(\w+)/).each { match, majorVal, minorVal, patchVal, commitVal, hashVal ->
|
|
|
|
if (output.toLowerCase().endsWith('-dirty')) {
|
|
|
|
postfix = '-DIRTY'
|
|
|
|
} else if(commit as int > 0) {
|
|
|
|
patchVal = (patchVal as int + 1) as String
|
|
|
|
postfix = '-SNAPSHOT'
|
|
|
|
} else {
|
|
|
|
postfix = ''
|
|
|
|
}
|
|
|
|
|
|
|
|
major = majorVal as int
|
|
|
|
minor = minorVal as int
|
|
|
|
patch = patchVal as int
|
|
|
|
hash = hashVal
|
|
|
|
}
|
|
|
|
return [version: "${major}.${minor}.${patch}${postfix}", hash: hash]
|
|
|
|
}
|
|
|
|
|
|
|
|
def versionInfo = parseGitVersion()
|
|
|
|
|
|
|
|
version = versionInfo.version
|
|
|
|
def root = project
|
|
|
|
|
|
|
|
subprojects { Project ch ->
|
|
|
|
ch.version = root.version
|
|
|
|
ch.repositories {
|
2017-11-27 01:12:23 +00:00
|
|
|
google()
|
2024-01-24 15:39:09 +00:00
|
|
|
mavenCentral()
|
2015-10-31 04:13:41 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-01-24 15:39:09 +00:00
|
|
|
tasks.register('clean', Delete) {
|
2015-10-31 04:13:41 +00:00
|
|
|
delete rootProject.buildDir
|
2016-10-29 17:44:18 +00:00
|
|
|
}
|