Skip to content

Commit

Permalink
Fixed null pointer
Browse files Browse the repository at this point in the history
Signed-off-by: Vincenzo Palazzo <[email protected]>
  • Loading branch information
vincenzopalazzo committed Apr 24, 2021
1 parent 63e208b commit 9d11c2d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -71,8 +71,8 @@ publishing {
repositories {
maven {
credentials {
username = System.getenv("MAVEN_USERNAME").toString()
password = System.getenv("MAVEN_PASSWORD").toString()
username = System.getenv("MAVEN_USERNAME")
password = System.getenv("MAVEN_PASSWORD")
}
val releasesRepoUrl = uri("https://oss.sonatype.org/service/local/staging/deploy/maven2")
val snapshotsRepoUrl = uri("https://oss.sonatype.org/content/repositories/snapshots")
Expand Down

0 comments on commit 9d11c2d

Please sign in to comment.