Set publication infomation

This commit is contained in:
2026-09-09 01:56:26 +08:00
parent c038082897
commit 5b48051288
1 file changed
+22
+22
View File
@@ -33,6 +33,28 @@ subprojects {
}
}
}
publications.withType<MavenPublication> {
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"
}
}
}
}
}