forked from amazon-ion/ion-element-kotlin
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
5 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 { | ||
|
@@ -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 { | ||
|
@@ -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() | ||
|