Skip to content

Commit

Permalink
use new ossrh credentials
Browse files Browse the repository at this point in the history
  • Loading branch information
ftomassetti committed Sep 27, 2024
1 parent 9f135f6 commit 5729ecc
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions library/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@ publishing {
val snapshotRepo = URI("https://oss.sonatype.org/content/repositories/snapshots/")
url = if (isReleaseVersion) releaseRepo else snapshotRepo
credentials {
username = project.properties["ossrhUsername"] as? String
password = project.properties["ossrhPassword"] as? String
username = project.properties["ossrhTokenUsername"] as? String
password = project.properties["ossrhTokenPassword"] as? String
}
}
}
Expand Down
4 changes: 2 additions & 2 deletions testing/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@ publishing {
val snapshotRepo = URI("https://oss.sonatype.org/content/repositories/snapshots/")
url = if (isReleaseVersion) releaseRepo else snapshotRepo
credentials {
username = project.properties["ossrhUsername"] as? String
password = project.properties["ossrhPassword"] as? String
username = project.properties["ossrhTokenUsername"] as? String
password = project.properties["ossrhTokenPassword"] as? String
}
}
}
Expand Down

0 comments on commit 5729ecc

Please sign in to comment.