Skip to content

Commit

Permalink
Update build to use nexus tokens not password
Browse files Browse the repository at this point in the history
  • Loading branch information
parrt committed Nov 9, 2024
1 parent aab7d61 commit 6da061b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -97,8 +97,8 @@ publishing {
maven {
url "https://oss.sonatype.org/${libraryVersion.contains("-SNAPSHOT") ? 'content/repositories/snapshots' : 'service/local/staging/deploy/maven2'}"
credentials {
username sonatypeUsername
password sonatypePassword
username = findProperty("ossrhToken") as String
password = findProperty("ossrhTokenPassword") as String
}
}
}
Expand Down

0 comments on commit 6da061b

Please sign in to comment.