Use GH repository description in platforms (#4071)

This commit is contained in:
EnZaXD 2024-08-05 09:09:09 +02:00 committed by GitHub
parent 462a10363c
commit 7b21df2c12
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View File

@ -6,7 +6,7 @@ plugins {
allprojects { allprojects {
group = "com.viaversion" group = "com.viaversion"
version = property("projectVersion") as String // from gradle.properties version = property("projectVersion") as String // from gradle.properties
description = "Allow newer clients to join older server versions." description = "Allows the connection of newer clients to older server versions for Minecraft servers."
} }
val main = setOf( val main = setOf(

View File

@ -58,7 +58,7 @@ import org.slf4j.Logger;
name = "ViaVersion", name = "ViaVersion",
version = VersionInfo.VERSION, version = VersionInfo.VERSION,
authors = {"_MylesC", "creeper123123321", "Gerrygames", "kennytv", "Matsv", "EnZaXD", "RK_01"}, authors = {"_MylesC", "creeper123123321", "Gerrygames", "kennytv", "Matsv", "EnZaXD", "RK_01"},
description = "Allow newer Minecraft versions to connect to an older server version.", description = "Allows the connection of newer clients to older server versions for Minecraft servers.",
url = "https://viaversion.com" url = "https://viaversion.com"
) )
public class VelocityPlugin implements ViaServerProxyPlatform<Player> { public class VelocityPlugin implements ViaServerProxyPlatform<Player> {