Skip to content

Commit

Permalink
add pom meta data
Browse files Browse the repository at this point in the history
  • Loading branch information
jillesvangurp committed Jan 16, 2025
1 parent 5161bc1 commit f011627
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -143,6 +143,36 @@ tasks.named("iosSimulatorArm64Test") {
}

publishing {
publications {
withType<MavenPublication> {
pom {
name.set("GeoGeometry")
description.set("A Kotlin Multiplatform library for geospatial geometry operations.")
url.set("https://github.com/jillesvangurp/geogeometry")

licenses {
license {
name.set("MIT License")
url.set("https://github.com/jillesvangurp/geogeometry/blob/master/LICENSE")
}
}

developers {
developer {
id.set("jillesvangurp")
name.set("Jilles van Gurp")
email.set("[email protected]")
}
}

scm {
connection.set("scm:git:git://github.com/jillesvangurp/geogeometry.git")
developerConnection.set("scm:git:ssh://github.com:jillesvangurp/geogeometry.git")
url.set("https://github.com/jillesvangurp/geogeometry")
}
}
}
}
repositories {
maven {
// GOOGLE_APPLICATION_CREDENTIALS env var must be set for this to work
Expand Down

0 comments on commit f011627

Please sign in to comment.