Skip to content

Commit

Permalink
fix(gradle): alternative way of specifying nexus credentials
Browse files Browse the repository at this point in the history
  • Loading branch information
hleb-rubanau committed Apr 13, 2021
1 parent a018510 commit 2df78dd
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 @@ -237,8 +237,8 @@ nexusPublishing {
//nexusUrl.set(uri(staging_url))
nexusUrl = uri(url_base+"/service/local/")
snapshotRepositoryUrl = uri(snapshots_url)
//username = getProperty('ossrhUsername')
//password = getProperty('ossrhPassword')
username = Project.getProperty('ossrhUsername')
password = Project.getProperty('ossrhPassword')
}
}
}
Expand Down

0 comments on commit 2df78dd

Please sign in to comment.