From b48c59f40f72a4330d1b44461d40731d0b22cb66 Mon Sep 17 00:00:00 2001 From: Kavin <20838718+FireMasterK@users.noreply.github.com> Date: Sun, 29 Jan 2023 23:02:12 +0000 Subject: [PATCH] Add pom details. --- build.gradle | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) diff --git a/build.gradle b/build.gradle index d7c8e66..d1c7ef4 100644 --- a/build.gradle +++ b/build.gradle @@ -56,6 +56,33 @@ publishing { publications { ossrh(MavenPublication) { from(components.java) + pom { + name = 'reqwest4j' + packaging 'jar' + description = 'Java bindings to Reqwest with jni-rs for use in Piped\'s backend!' + url = 'https://github.com/TeamPiped/reqwest4j' + + scm { + connection = 'scm:git:git://github.com/TeamPiped/reqwest4j.git' + developerConnection = 'scm:git:https://github.com/TeamPiped/reqwest4j.git' + url = 'https://github.com/TeamPiped/reqwest4j' + } + + licenses { + license { + name = 'MIT License' + url = 'https://raw.githubusercontent.com/TeamPiped/reqwest4j/main/LICENSE' + } + } + + developers { + developer { + id = 'kavin' + name = 'Kavin' + email = 'kavin@kavin.rocks' + } + } + } } } }