Fix deprecation warnings in dependency-graph init-script

This commit is contained in:
daz 2025-01-30 08:46:34 -07:00
parent 65a3beb941
commit 79bad900c0
No known key found for this signature in database

View file

@ -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)