Skip to content

Commit

Permalink
Fix URLs in build.gradle.kts
Browse files Browse the repository at this point in the history
  • Loading branch information
popematt committed Apr 25, 2024
1 parent b681ad4 commit a7768dd
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ version = "1.3.0-SNAPSHOT"
description = "An immutable in-memory representation of Amazon Ion for Kotlin"

val isCI: Boolean = System.getenv("CI") == "true"
val githubRepositoryUrl = "https://github.com/amazon-ion/ion-java/"
val githubRepositoryUrl = "https://github.com/amazon-ion/ion-element-kotlin/"
val isReleaseVersion: Boolean = !version.toString().endsWith("SNAPSHOT")

dependencies {
Expand Down Expand Up @@ -115,9 +115,9 @@ publishing {
description.set(project.description)
url.set(githubRepositoryUrl)
scm {
connection.set("scm:git:[email protected]:amazon-ion/ion-java.git")
developerConnection.set("scm:git:[email protected]:amazon-ion/ion-java.git")
url.set("[email protected]:amazon-ion/ion-java.git")
connection.set("scm:git:[email protected]:amazon-ion/ion-element-kotlin.git")
developerConnection.set("scm:git:[email protected]:amazon-ion/ion-element-kotlin.git")
url.set("[email protected]:amazon-ion/ion-element-kotlin.git")
}
licenses {
license {
Expand All @@ -137,7 +137,7 @@ publishing {
}
repositories {
maven {
url = uri("https://aws.oss.sonatype.org/service/local/staging/deploy/maven2")
url = uri("https://aws.oss.sonatype.org/service/local/")
credentials {
username = properties["ossrhUsername"].toString()
password = properties["ossrhPassword"].toString()
Expand Down

0 comments on commit a7768dd

Please sign in to comment.