mirror of
https://github.com/EssentialsX/Essentials.git
synced 2024-11-01 00:10:32 +01:00
7eed853294
time for an adventure
15 lines
407 B
Groovy
15 lines
407 B
Groovy
plugins {
|
|
id("essentials.parent-build-logic")
|
|
}
|
|
|
|
group = "net.essentialsx"
|
|
version = "2.21.0-SNAPSHOT"
|
|
|
|
project.ext {
|
|
GIT_COMMIT = !indraGit.isPresent() ? "unknown" : indraGit.commit().abbreviate(7).name()
|
|
GIT_DEPTH = GitUtil.commitsSinceLastTag(project)
|
|
GIT_BRANCH = GitUtil.headBranchName(project)
|
|
|
|
FULL_VERSION = "${version}".replace("-SNAPSHOT", "-dev+${GIT_DEPTH}-${GIT_COMMIT}")
|
|
}
|