Slackbot
02/09/2024, 10:57 AMVampire
02/09/2024, 11:02 AMpluginManagement { repositories { ... } }
should be what you wantMartin
02/09/2024, 11:03 AMplugins {}
but not for buildscript {}
Vampire
02/09/2024, 11:24 AMgradle.allprojects {
buildscript {
repositories {
}
}
}
But actually if you need it, it might be a sign that you should refactor the build logic from the build script to a custom plugin or task. 🙂Martin
02/09/2024, 11:29 AMMartin
02/09/2024, 11:30 AMMartin
02/09/2024, 11:30 AM