aboutsummaryrefslogtreecommitdiff
path: root/build.gradle
diff options
context:
space:
mode:
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"
+ }
+ }
+ }
}
}