Skip to content

Commit

Permalink
Fix deprecation warnings with Gradle 8.12
Browse files Browse the repository at this point in the history
Signed-off-by: Daz DeBoer <daz@gradle.com>
  • Loading branch information
bigdaz authored Jan 30, 2025
1 parent ed09b39 commit 6131f1a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/main/resources/develocity-injection.init.gradle
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 6131f1a

Please # to comment.