Configure GenerateMavenPom task

dev
Exlll 9 months ago
parent cb44743d41
commit f21d68e630
No known key found for this signature in database
GPG Key ID: F76FCA1440A71E11

@ -52,6 +52,35 @@ publishing {
publications { publications {
register<MavenPublication>(publicationName) { register<MavenPublication>(publicationName) {
from(components["java"]) from(components["java"])
pom {
name = "ConfigLib ${publicationName}"
description = "A Minecraft library for saving, loading, updating, " +
"and commenting YAML configuration files."
url = "https://github.com/Exlll/ConfigLib"
developers {
developer {
name = "Exlll"
email = "exlll321@gmail.com"
url = "https://github.com/Exlll"
}
}
licenses {
license {
name = "MIT License"
url = "https://opensource.org/license/mit"
}
}
scm {
connection = "scm:git:git://github.com/Exlll/ConfigLib.git"
developerConnection = "scm:git:ssh://github.com:Exlll/ConfigLib.git"
url = "https://github.com/Exlll/ConfigLib/tree/master"
}
}
} }
} }
} }

Loading…
Cancel
Save