From 5ecaf3dd6d8569f9c6e07e5331c5851f3d22f641 Mon Sep 17 00:00:00 2001 From: RaphiMC <50594595+RaphiMC@users.noreply.github.com> Date: Fri, 30 Jun 2023 23:51:40 +0200 Subject: [PATCH] Updated build.gradle --- build.gradle | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/build.gradle b/build.gradle index ac64aeb..15b0b46 100644 --- a/build.gradle +++ b/build.gradle @@ -48,6 +48,7 @@ publishing { maven { name = "Via" url = "https://repo.viaversion.com/" + credentials(PasswordCredentials) authentication { basic(BasicAuthentication) @@ -61,6 +62,28 @@ publishing { version = project.maven_version from components.java + + pom { + name = "ViaLegacy" + description = "ViaVersion addon to add support for EVERY Minecraft server version (Classic, Alpha, Beta, Release)" + url = "https://github.com/ViaVersion/ViaLegacy" + licenses { + license { + name = "GPL-3.0 License" + url = "https://github.com/ViaVersion/ViaLegacy/blob/main/LICENSE" + } + } + developers { + developer { + id = "RK_01" + } + } + scm { + connection = "scm:git:git://github.com/ViaVersion/ViaLegacy.git" + developerConnection = "scm:git:ssh://github.com/ViaVersion/ViaLegacy.git" + url = "https://github.com/ViaVersion/ViaLegacy.git" + } + } } } }