From fabc3ff7aa4c30db085ed0f0032e32460fc0eb89 Mon Sep 17 00:00:00 2001 From: nea Date: Thu, 25 May 2023 02:55:53 +0200 Subject: Add pom metadata --- build.gradle | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/build.gradle b/build.gradle index 56ada8b..e116a82 100644 --- a/build.gradle +++ b/build.gradle @@ -163,6 +163,23 @@ publishing { publications { maven(MavenPublication) { from components.java + pom { + name = "LibGui" + description = "Minecraft GUI Library" + url = "https://github.com/CottonMC/LibGui" + licenses { + license { + name = "MIT" + url = "https://github.com/CottonMC/LibGui/blob/HEAD/LICENSE" + } + } + developers { + developer { + name = "CottonMC" + url = "https://github.com/CottonMC" + } + } + } } } -- cgit