From 5b4805128893fb8f4088fcc4dea21e8d73c1b448 Mon Sep 17 00:00:00 2001 From: RTAkland Date: Wed, 9 Sep 2026 01:56:26 +0800 Subject: [PATCH] Set publication infomation --- build.gradle.kts | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/build.gradle.kts b/build.gradle.kts index 3c990d5..fa14d9e 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -33,6 +33,28 @@ subprojects { } } } + publications.withType { + pom { + name = "libmc" + description = "Lightweight Minecraft client-side protocol library" + url = "https://github.com/RTAkland/libmc" + licenses { + license { + name = "Apache-2.0" + url = "https://www.apache.org/licenses/LICENSE-2.0" + } + } + developers { + developer { + id = "rtakland" + name = "RTAkland" + } + } + scm { + url = "https://github.com/RTAkland/libmc.git" + } + } + } } }