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" + } + } + } } }