mirror of
https://github.com/gradle/actions.git
synced 2025-02-03 15:26:42 -05:00
Fix deprecation warnings in develocity init-script
This change has been made directly to the init-script, and will be superceded by the equivalent fix in the reference script.
This commit is contained in:
parent
79bad900c0
commit
0b492c475f
1 changed files with 3 additions and 3 deletions
|
@ -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)
|
||||
|
|
Loading…
Reference in a new issue