From a12b6eec74eae87557b03a5eb4afe86bd4137fc8 Mon Sep 17 00:00:00 2001 From: RaphiMC <50594595+RaphiMC@users.noreply.github.com> Date: Fri, 30 Jun 2023 23:54:15 +0200 Subject: [PATCH] Updated build.gradle --- build.gradle | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/build.gradle b/build.gradle index a10c1f2..8259b39 100644 --- a/build.gradle +++ b/build.gradle @@ -47,6 +47,7 @@ publishing { maven { name = "Via" url = "https://repo.viaversion.com/" + credentials(PasswordCredentials) authentication { basic(BasicAuthentication) @@ -60,6 +61,28 @@ publishing { version = project.maven_version from components.java + + pom { + name = "ViaAprilFools" + description = "ViaVersion addon to add support for some notable Minecraft snapshots" + url = "https://github.com/ViaVersion/ViaAprilFools" + licenses { + license { + name = "GPL-3.0 License" + url = "https://github.com/ViaVersion/ViaAprilFools/blob/main/LICENSE" + } + } + developers { + developer { + id = "RK_01" + } + } + scm { + connection = "scm:git:git://github.com/ViaVersion/ViaAprilFools.git" + developerConnection = "scm:git:ssh://github.com/ViaVersion/ViaAprilFools.git" + url = "https://github.com/ViaVersion/ViaAprilFools.git" + } + } } } }