mirror of
https://github.com/Xiao-MoMi/Custom-Nameplates.git
synced 2025-12-19 15:09:23 +00:00
1.21.11
This commit is contained in:
@@ -32,10 +32,10 @@ subprojects {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
fun versionBanner() = project.providers.exec {
|
fun versionBanner(): String = project.providers.exec {
|
||||||
commandLine("git", "rev-parse", "--short=8", "HEAD")
|
commandLine("git", "rev-parse", "--short=8", "HEAD")
|
||||||
}.standardOutput.asText.map { it.trim() }.getOrElse("Unknown")
|
}.standardOutput.asText.map { it.trim() }.getOrElse("Unknown")
|
||||||
|
|
||||||
fun builder() = project.providers.exec {
|
fun builder(): String = project.providers.exec {
|
||||||
commandLine("git", "config", "user.name")
|
commandLine("git", "config", "user.name")
|
||||||
}.standardOutput.asText.map { it.trim() }.getOrElse("Unknown")
|
}.standardOutput.asText.map { it.trim() }.getOrElse("Unknown")
|
||||||
@@ -1,6 +1,6 @@
|
|||||||
# Project settings
|
# Project settings
|
||||||
# Rule: [major update].[feature update].[bug fix]
|
# Rule: [major update].[feature update].[bug fix]
|
||||||
project_version=3.0.35
|
project_version=3.0.36
|
||||||
config_version=38
|
config_version=38
|
||||||
project_group=net.momirealms
|
project_group=net.momirealms
|
||||||
|
|
||||||
@@ -22,34 +22,34 @@ adventure_bundle_version=4.25.0
|
|||||||
adventure_platform_version=4.4.1
|
adventure_platform_version=4.4.1
|
||||||
cloud_core_version=2.0.0
|
cloud_core_version=2.0.0
|
||||||
cloud_services_version=2.0.0
|
cloud_services_version=2.0.0
|
||||||
cloud_brigadier_version=2.0.0-beta.13
|
cloud_brigadier_version=2.0.0-beta.14
|
||||||
cloud_bukkit_version=2.0.0-beta.13
|
cloud_bukkit_version=2.0.0-beta.14
|
||||||
cloud_paper_version=2.0.0-beta.13
|
cloud_paper_version=2.0.0-beta.14
|
||||||
cloud_minecraft_extras_version=2.0.0-beta.13
|
cloud_minecraft_extras_version=2.0.0-beta.14
|
||||||
boosted_yaml_version=1.3.7
|
boosted_yaml_version=1.3.7
|
||||||
byte_buddy_version=1.17.8
|
byte_buddy_version=1.18.2
|
||||||
mojang_brigadier_version=1.0.18
|
mojang_brigadier_version=1.0.18
|
||||||
mongodb_driver_version=5.6.1
|
mongodb_driver_version=5.6.2
|
||||||
mariadb_driver_version=3.5.6
|
mariadb_driver_version=3.5.6
|
||||||
mysql_driver_version=9.4.0
|
mysql_driver_version=9.5.0
|
||||||
hikari_version=7.0.2
|
hikari_version=7.0.2
|
||||||
commons_pool_version=2.12.1
|
commons_pool_version=2.12.1
|
||||||
bstats_version=3.1.0
|
bstats_version=3.1.0
|
||||||
geantyref_version=1.3.16
|
geantyref_version=1.3.16
|
||||||
caffeine_version=3.2.2
|
caffeine_version=3.2.3
|
||||||
jedis_version=7.0.0
|
jedis_version=7.1.0
|
||||||
exp4j_version=0.4.8
|
exp4j_version=0.4.8
|
||||||
placeholder_api_version=2.11.6
|
placeholder_api_version=2.11.7
|
||||||
vault_version=1.7
|
vault_version=1.7
|
||||||
guava_version=33.5.0-jre
|
guava_version=33.5.0-jre
|
||||||
commons_io_version=2.20.0
|
commons_io_version=2.21.0
|
||||||
lwjgl_version=3.3.6
|
lwjgl_version=3.3.6
|
||||||
fastutil_version=8.5.18
|
fastutil_version=8.5.18
|
||||||
|
|
||||||
# Proxy settings
|
# Proxy settings
|
||||||
systemProp.socks.proxyHost=127.0.0.1
|
#systemProp.socks.proxyHost=127.0.0.1
|
||||||
systemProp.socks.proxyPort=7890
|
#systemProp.socks.proxyPort=7890
|
||||||
systemProp.http.proxyHost=127.0.0.1
|
#systemProp.http.proxyHost=127.0.0.1
|
||||||
systemProp.http.proxyPort=7890
|
#systemProp.http.proxyPort=7890
|
||||||
systemProp.https.proxyHost=127.0.0.1
|
#systemProp.https.proxyHost=127.0.0.1
|
||||||
systemProp.https.proxyPort=7890
|
#systemProp.https.proxyPort=7890
|
||||||
|
|||||||
@@ -879,7 +879,8 @@ public final class Reflections {
|
|||||||
public static final Class<?> clazz$ResourceLocation = requireNonNull(
|
public static final Class<?> clazz$ResourceLocation = requireNonNull(
|
||||||
ReflectionUtils.getClazz(
|
ReflectionUtils.getClazz(
|
||||||
BukkitReflectionUtils.assembleMCClass("resources.ResourceLocation"),
|
BukkitReflectionUtils.assembleMCClass("resources.ResourceLocation"),
|
||||||
BukkitReflectionUtils.assembleMCClass("resources.MinecraftKey")
|
BukkitReflectionUtils.assembleMCClass("resources.MinecraftKey"),
|
||||||
|
BukkitReflectionUtils.assembleMCClass("resources.Identifier")
|
||||||
)
|
)
|
||||||
);
|
);
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user