diff options
author | nea <nea@nea.moe> | 2023-05-25 02:55:53 +0200 |
---|---|---|
committer | nea <nea@nea.moe> | 2023-05-25 02:55:53 +0200 |
commit | fabc3ff7aa4c30db085ed0f0032e32460fc0eb89 (patch) | |
tree | 0b75cb200f4687d2ebc96070efb9585b8817fe2f /build.gradle | |
parent | a8e973bc1911147ca474d4fc520205a4703183ce (diff) | |
download | LibGui-fabc3ff7aa4c30db085ed0f0032e32460fc0eb89.tar.gz LibGui-fabc3ff7aa4c30db085ed0f0032e32460fc0eb89.tar.bz2 LibGui-fabc3ff7aa4c30db085ed0f0032e32460fc0eb89.zip |
Add pom metadatapommetadata
Diffstat (limited to 'build.gradle')
-rw-r--r-- | build.gradle | 17 |
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" + } + } + } } } |