-
Notifications
You must be signed in to change notification settings - Fork 355
/
build.gradle
60 lines (54 loc) · 1.66 KB
/
build.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
buildscript {
ext.kotlin_version = '2.0.21'
repositories {
google()
mavenCentral()
maven { url 'https://jitpack.io' }
}
dependencies {
classpath 'com.android.tools.build:gradle:8.7.2'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath "com.github.hannesa2:gradle-one-jar:1.7"
}
}
allprojects {
group = 'com.github.ioio'
version = getTag()
ext.versionNamespace = 'IOIO'
ext.versionString = sprintf("%s%s", versionNamespace, version)
apply plugin: 'maven-publish'
apply plugin: 'signing'
repositories {
google()
mavenCentral()
maven {
url "http://www.sparetimelabs.com/maven2"
allowInsecureProtocol = true
}
maven { url 'https://jitpack.io' }
}
}
static def getTag() {
def tagVersion = "$System.env.VERSION"
if (tagVersion == "null") {
// with local un-committed changes a -DIRTY is added
def processChanges = "git diff-index --name-only HEAD --".execute()
def dirty = ""
if (!processChanges.text.toString().trim().isEmpty())
dirty = "-DIRTY"
def process = "git describe --tags".execute()
tagVersion = process.text.toString().trim() + dirty
} else {
def tagVersionToken = tagVersion.split("/")
if (tagVersionToken.size() > 2)
tagVersion = tagVersionToken[2]
else
tagVersion = tagVersionToken[0]
}
return tagVersion
}
@SuppressWarnings('unused')
static def getGitCommitCount() {
def process = "git rev-list HEAD --count".execute()
return process.text.toInteger()
}