forked from rehlds/Metamod-R
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
54 lines (46 loc) · 1.48 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
import versioning.GitVersioner
import versioning.MetamodVersionInfo
import org.joda.time.DateTime
apply from: 'shared.gradle'
group = 'metamod'
apply plugin: 'idea'
idea {
project {
languageLevel = 'JDK_1_7'
}
}
def gitInfo = GitVersioner.versionForDir(project.rootDir)
MetamodVersionInfo versionInfo
if (gitInfo && gitInfo.tag && gitInfo.tag[0] == 'v') {
def m = gitInfo.tag =~ /^v(\d+)\.(\d+)(\.(\d+))?$/
if (!m.find()) {
throw new RuntimeException("Invalid git version tag name ${gitInfo.tag}")
}
versionInfo = new MetamodVersionInfo(
majorVersion: m.group(1) as int,
minorVersion: m.group(2) as int,
maintenanceVersion: m.group(4) ? (m.group(4) as int) : null,
countCommit: gitInfo.countCommit,
lastCommitDate: gitInfo.lastCommitDate,
commitID: gitInfo.commitID,
authorCommit: gitInfo.authorCommit,
urlCommits: gitInfo.urlCommits
)
} else {
versionInfo = new MetamodVersionInfo(
majorVersion: project.majorVersion as int,
minorVersion: project.minorVersion as int,
specialVersion: gitInfo ? project.specialVersion : "SNAPSHOT",
countCommit: gitInfo ? gitInfo.countCommit : 0,
lastCommitDate: gitInfo ? gitInfo.lastCommitDate : new DateTime(),
commitID: gitInfo ? gitInfo.commitID : "",
authorCommit: gitInfo ? gitInfo.authorCommit : "",
urlCommits: gitInfo ? gitInfo.urlCommits : ""
)
}
project.ext.metamodVersionInfo = versionInfo
project.version = versionInfo.asVersion()
apply from: 'publish.gradle'
task wrapper(type: Wrapper) {
gradleVersion = '2.4'
}