123456789101112131415161718192021 |
- settingsEvaluated {
- settings.pluginManagement {
- repositories {
- mavenLocal()
- removeIf { it.name == "sonatype" }
- }
- }
- }
- allprojects {
- buildscript {
- repositories {
- mavenLocal()
- removeIf { it.name == "sonatype" }
- }
- }
- repositories {
- mavenLocal()
- removeIf { it.name == "sonatype" }
- }
- }
|