mirror of
https://github.com/plexusorg/Plex-FAWE.git
synced 2024-11-05 04:16:06 +00:00
Update offset to match CI
This commit is contained in:
parent
2b8afaf930
commit
1f39257753
@ -30,6 +30,8 @@ clean { delete "target" }
|
||||
print new File('splash.txt').text
|
||||
|
||||
group = 'com.boydti.fawe'
|
||||
|
||||
def rootVersion = "1.13"
|
||||
def revision = ""
|
||||
def buildNumber = ""
|
||||
def date = ""
|
||||
@ -38,13 +40,13 @@ ext {
|
||||
git = org.ajoberstar.grgit.Grgit.open(file(".git"))
|
||||
date = git.head().date.format("yy.MM.dd")
|
||||
revision = "-${git.head().abbreviatedId}"
|
||||
index = 0; // Offset to match CI
|
||||
index = -1959; // Offset to match CI
|
||||
parents = git.head().parentIds;
|
||||
for (; parents != null && !parents.isEmpty(); index++) {
|
||||
commit = git.getResolve().toCommit(parents.get(0));
|
||||
parents = commit.getParentIds()
|
||||
}
|
||||
buildNumber = "-${index}"
|
||||
buildNumber = "${index}"
|
||||
} catch (Throwable ignore) {
|
||||
revision = "-unknown"
|
||||
}
|
||||
@ -53,7 +55,7 @@ ext {
|
||||
if ( project.hasProperty("lzNoVersion") ) { // gradle build -PlzNoVersion
|
||||
version = "unknown"
|
||||
} else {
|
||||
version = date + revision + buildNumber
|
||||
version = String.format("%s.%s", rootVersion, buildNumber)
|
||||
}
|
||||
description = """FastAsyncWorldEdit"""
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user