mirror of
https://github.com/plexusorg/Plex-FAWE.git
synced 2024-12-22 17:27:38 +00:00
Do not append commit when building locally
Because the commit is the version when building locally.
This commit is contained in:
parent
00641c8108
commit
cc75654b05
@ -25,8 +25,12 @@ fun Project.applyPlatformAndCoreConfiguration() {
|
||||
// apply(plugin = "checkstyle")
|
||||
apply(plugin = "com.github.johnrengelman.shadow")
|
||||
|
||||
ext["internalVersion"] = "$version;${rootProject.ext["gitCommitHash"]}"
|
||||
|
||||
if (project.hasProperty("buildnumber")) {
|
||||
ext["internalVersion"] = "$version;${rootProject.ext["gitCommitHash"]}"
|
||||
} else {
|
||||
ext["internalVersion"] = "$version"
|
||||
}
|
||||
|
||||
tasks
|
||||
.withType<JavaCompile>()
|
||||
.matching { it.name == "compileJava" || it.name == "compileTestJava" }
|
||||
|
Loading…
Reference in New Issue
Block a user