Mirror von
https://github.com/GeyserMC/Geyser.git
synchronisiert 2024-11-04 23:30:17 +01:00
Rename Geyser standalone jar to Geyser-Standalone.jar
Dieser Commit ist enthalten in:
Ursprung
c84d53c827
Commit
f31b183a33
@ -27,7 +27,7 @@ application {
|
||||
}
|
||||
|
||||
tasks.withType<com.github.jengelman.gradle.plugins.shadow.tasks.ShadowJar> {
|
||||
archiveBaseName.set("Geyser")
|
||||
archiveBaseName.set("Geyser-Standalone")
|
||||
|
||||
transform(Log4j2PluginsCacheFileTransformer())
|
||||
}
|
@ -1,5 +1,4 @@
|
||||
import net.kyori.blossom.BlossomExtension
|
||||
import net.kyori.indra.git.IndraGitExtension
|
||||
|
||||
plugins {
|
||||
id("net.kyori.blossom")
|
||||
@ -109,7 +108,7 @@ configure<BlossomExtension> {
|
||||
}
|
||||
|
||||
fun Project.buildNumber(): Int =
|
||||
Integer.parseInt(System.getenv("BUILD_NUMBER") ?: "-1")
|
||||
System.getenv("BUILD_NUMBER")?.let { Integer.parseInt(it) } ?: -1
|
||||
|
||||
inner class GitInfo {
|
||||
val branch: String
|
||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren