mirror of
https://github.com/TeamPiped/reqwest4j.git
synced 2024-08-14 23:54:39 +00:00
Add pom details.
This commit is contained in:
parent
0ffd1e61b8
commit
b48c59f40f
1 changed files with 27 additions and 0 deletions
27
build.gradle
27
build.gradle
|
@ -56,6 +56,33 @@ publishing {
|
||||||
publications {
|
publications {
|
||||||
ossrh(MavenPublication) {
|
ossrh(MavenPublication) {
|
||||||
from(components.java)
|
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'
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue