aboutsummaryrefslogtreecommitdiff
path: root/build.gradle
diff options
context:
space:
mode:
authornea <nea@nea.moe>2023-05-25 02:55:53 +0200
committernea <nea@nea.moe>2023-05-25 02:55:53 +0200
commitfabc3ff7aa4c30db085ed0f0032e32460fc0eb89 (patch)
tree0b75cb200f4687d2ebc96070efb9585b8817fe2f /build.gradle
parenta8e973bc1911147ca474d4fc520205a4703183ce (diff)
downloadLibGui-fabc3ff7aa4c30db085ed0f0032e32460fc0eb89.tar.gz
LibGui-fabc3ff7aa4c30db085ed0f0032e32460fc0eb89.tar.bz2
LibGui-fabc3ff7aa4c30db085ed0f0032e32460fc0eb89.zip
Add pom metadatapommetadata
Diffstat (limited to 'build.gradle')
-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"
+ }
+ }
+ }
}
}