diff options
-rw-r--r-- | build.gradle | 17 |
1 files changed, 17 insertions, 0 deletions
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" + } + } + } } } |