mirror of
https://github.com/EssentialsX/Essentials.git
synced 2024-11-12 13:54:16 +01:00
1c5a7e9ffb
Mojang will be releasing 1.19 within two weeks and 2.20.0 is not ready for that timeframe. We want to release 2.19.5 with 1.19 support before that.
15 lines
407 B
Groovy
15 lines
407 B
Groovy
plugins {
|
|
id("essentials.parent-build-logic")
|
|
}
|
|
|
|
group = "net.essentialsx"
|
|
version = "2.19.5-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}")
|
|
}
|