Skip to content

Commit

Permalink
Add metadata to POM file (#48)
Browse files Browse the repository at this point in the history
  • Loading branch information
divergentdave authored Nov 29, 2023
1 parent f461d64 commit a7b1b4b
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions divviup/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -103,6 +103,28 @@ publishing {
afterEvaluate {
from(components["release"])
}

pom {
name.set("divviup-android")
description.set("An Android client library for the Distributed Aggregation Protocol.")
url.set("https://divviup.org/")
licenses {
license {
name.set("Mozilla Public License 2.0")
url.set("https://www.mozilla.org/MPL/2.0/")
}
}
developers {
developer {
email.set("[email protected]")
}
}
scm {
connection.set("scm:git:https://github.com/divviup/divviup-android.git")
developerConnection.set("scm:git:https://github.com/divviup/divviup-android.git")
url.set("https://github.com/divviup/divviup-android/tree/main")
}
}
}
}
}

0 comments on commit a7b1b4b

Please sign in to comment.