Skip to content

Commit

Permalink
Fix Gradle syntax deprecations
Browse files Browse the repository at this point in the history
  • Loading branch information
chadlwilson authored Jan 1, 2025
1 parent 80e3874 commit 8e54b9a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions provision/init.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -10,18 +10,18 @@ addListener new BuildAdapter() {
// As soon as the projects are loaded, we add our repository before any other repositories
gradle.rootProject {
buildscript.repositories {
maven { url "https://nexus.gocd.io/repository/internal" }
maven { url = "https://nexus.gocd.io/repository/internal" }
}
repositories {
maven { url "https://nexus.gocd.io/repository/internal" }
maven { url = "https://nexus.gocd.io/repository/internal" }
}
}
gradle.rootProject.allprojects {
buildscript.repositories {
maven { url "https://nexus.gocd.io/repository/internal" }
maven { url = "https://nexus.gocd.io/repository/internal" }
}
repositories {
maven { url "https://nexus.gocd.io/repository/internal" }
maven { url = "https://nexus.gocd.io/repository/internal" }
}
}
}
Expand Down

0 comments on commit 8e54b9a

Please sign in to comment.