aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoman / Linnea Gräf <nea@nea.moe>2023-05-25 17:22:26 +0200
committerGitHub <noreply@github.com>2023-05-25 18:22:26 +0300
commit5d702bcabc5d3973b3fb142f716a952a6eced94b (patch)
tree0b75cb200f4687d2ebc96070efb9585b8817fe2f
parenta8e973bc1911147ca474d4fc520205a4703183ce (diff)
downloadLibGui-5d702bcabc5d3973b3fb142f716a952a6eced94b.tar.gz
LibGui-5d702bcabc5d3973b3fb142f716a952a6eced94b.tar.bz2
LibGui-5d702bcabc5d3973b3fb142f716a952a6eced94b.zip
Add pom metadata (#199)
-rw-r--r--build.gradle17
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"
+ }
+ }
+ }
}
}