Skip to content

Commit

Permalink
Fix deprecation warnings with Gradle 8.12 (#32)
Browse files Browse the repository at this point in the history
Fixes #31
  • Loading branch information
bigdaz authored Jan 30, 2025
2 parents ed09b39 + 6131f1a commit f0de73d
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 f0de73d

Please # to comment.