Skip to content

Commit

Permalink
Fix deprecation warnings in develocity init-script
Browse files Browse the repository at this point in the history
This change has been made directly to the init-script, and will be superceded
by the equivalent fix in the reference script.
  • Loading branch information
bigdaz committed Jan 30, 2025
1 parent 79bad90 commit 0b492c4
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -45,12 +45,12 @@ initscript {

repositories {
maven {
url pluginRepositoryUrl
url = pluginRepositoryUrl
if (pluginRepositoryUsername && pluginRepositoryPassword) {
logger.lifecycle("Using credentials for plugin repository")
credentials {
username(pluginRepositoryUsername)
password(pluginRepositoryPassword)
username = pluginRepositoryUsername
password = pluginRepositoryPassword
}
authentication {
basic(BasicAuthentication)
Expand Down

0 comments on commit 0b492c4

Please sign in to comment.