Skip to content

Commit

Permalink
build(Gradle): Add more POM metadata required for publishing
Browse files Browse the repository at this point in the history
Without these, the check performed by Sonatype Nexus when closing a
staging repository for releasing fails.

Signed-off-by: Sebastian Schuberth <[email protected]>
  • Loading branch information
sschuberth committed Sep 14, 2023
1 parent 6ff36b3 commit 84600f3
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions buildSrc/src/main/kotlin/ort-publication-conventions.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,18 @@ configure<PublishingExtension> {
artifact(tasks["docsJavadocJar"])

pom {
name = project.name
description = "Part of the OSS Review Toolkit (ORT), a suite to automate software compliance checks."
url = "https://oss-review-toolkit.org/"

developers {
developer {
name = "The ORT Project Authors"
email = "[email protected]"
url = "https://github.com/oss-review-toolkit/ort/blob/main/NOTICE"
}
}

licenses {
license {
name = "Apache-2.0"
Expand Down

0 comments on commit 84600f3

Please sign in to comment.