Skip to content

Commit

Permalink
Fix deprecation warnings in dependency-graph init-script
Browse files Browse the repository at this point in the history
  • Loading branch information
bigdaz committed Jan 30, 2025
1 parent 65a3beb commit 79bad90
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ buildscript {
if (pluginRepositoryUsername && pluginRepositoryPassword) {
logger.lifecycle("Applying credentials for plugin repository: ${pluginRepositoryUrl}")
credentials {
username(pluginRepositoryUsername)
password(pluginRepositoryPassword)
username = pluginRepositoryUsername
password = pluginRepositoryPassword
}
authentication {
basic(BasicAuthentication)
Expand Down

0 comments on commit 79bad90

Please sign in to comment.