mirror of
https://github.com/IntellectualSites/PlotSquared.git
synced 2024-11-22 13:16:45 +01:00
Merge branch 'breaking' of https://github.com/IntellectualSites/PlotSquared into breaking
This commit is contained in:
commit
0c0d0104d7
14
build.gradle
14
build.gradle
@ -32,11 +32,15 @@ ext {
|
|||||||
date = git.head().getDate().format("yy.MM.dd")
|
date = git.head().getDate().format("yy.MM.dd")
|
||||||
revision = "-${git.head().abbreviatedId}"
|
revision = "-${git.head().abbreviatedId}"
|
||||||
parents = git.head().parentIds;
|
parents = git.head().parentIds;
|
||||||
index = -2039; // Offset to match CI
|
if (project.hasProperty('buildnumber')) {
|
||||||
for (; parents != null && !parents.isEmpty(); index++) {
|
buildNumber = "$buildnumber"
|
||||||
parents = git.getResolve().toCommit(parents.get(0)).getParentIds()
|
} else {
|
||||||
|
index = -2042; // Offset to match CI
|
||||||
|
for (; parents != null && !parents.isEmpty(); index++) {
|
||||||
|
parents = git.getResolve().toCommit(parents.get(0)).getParentIds()
|
||||||
|
}
|
||||||
|
buildNumber = "${index}"
|
||||||
}
|
}
|
||||||
buildNumber = "${index}"
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// version = String.format("%s.%s%s%s", rootVersion, date, revision, buildNumber)
|
// version = String.format("%s.%s%s%s", rootVersion, date, revision, buildNumber)
|
||||||
@ -72,7 +76,7 @@ subprojects {
|
|||||||
testAnnotationProcessor("org.projectlombok:lombok:1.18.4")
|
testAnnotationProcessor("org.projectlombok:lombok:1.18.4")
|
||||||
testImplementation "junit:junit:4.12"
|
testImplementation "junit:junit:4.12"
|
||||||
}
|
}
|
||||||
|
|
||||||
repositories {
|
repositories {
|
||||||
mavenCentral()
|
mavenCentral()
|
||||||
maven { url "http://maven.sk89q.com/repo/" }
|
maven { url "http://maven.sk89q.com/repo/" }
|
||||||
|
Loading…
Reference in New Issue
Block a user