Skip to content

Commit

Permalink
Update publication
Browse files Browse the repository at this point in the history
  • Loading branch information
ronjunevaldoz committed Sep 25, 2024
1 parent 918ee9b commit 1fa9728
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions convention-plugins/src/main/kotlin/root.publication.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -7,19 +7,15 @@ plugins {

allprojects {
group = "io.github.ronjunevaldoz"
version = "1.0.0-SNAPSHOT"
version = "1.0.0"
}

mavenPublishing {
coordinates(
groupId = "io.github.ronjunevaldoz",
artifactId = "paymongo-kotlin",
version = "1.0.0-SNAPSHOT"
version = "1.0.0"
)
// Configure publishing to Maven Central
publishToMavenCentral(SonatypeHost.S01)
// Enable GPG signing for all publications
signAllPublications()

pom {
name.set("KotlinPaymongo")
Expand All @@ -41,11 +37,17 @@ mavenPublishing {
}
developers {
developer {
id.set("ronjunevaldoz")
name.set("Ron June Valdoz")
url.set("https://github.com/ronjunevaldoz/")
email.set("ronjune.lopez@gmail.com")
organization.set("Ron June Valdoz") // TODO update real org
organizationUrl.set("https://github.com/ronjunevaldoz") // TODO update real org url
}
}
}
// Configure publishing to Maven Central
publishToMavenCentral(SonatypeHost.CENTRAL_PORTAL)
// Enable GPG signing for all publications
signAllPublications()
}

0 comments on commit 1fa9728

Please sign in to comment.