Skip to content

Commit

Permalink
build: fix sonatype nexusUrl problem (#1042)
Browse files Browse the repository at this point in the history
  • Loading branch information
matrei authored Dec 6, 2024
1 parent 282acd3 commit b6011d1
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,9 @@ if (isReleaseVersion) {
String nexusUser = findProperty('sonatypeUsername')
String nexusPass = findProperty('sonatypePassword')
String nexusStagingProfileId = findProperty('sonatypeStagingProfileId')
String nexusUrl = "https://s01.oss.sonatype.org/service/local/"
repositories {
sonatype {
nexusUrl = uri(nexusUrl)
nexusUrl = uri('https://s01.oss.sonatype.org/service/local/')
username = nexusUser
password = nexusPass
stagingProfileId = nexusStagingProfileId
Expand Down

0 comments on commit b6011d1

Please sign in to comment.