This message was deleted.
# community-support
s
This message was deleted.
v
I think setting
pluginManagement { repositories { ... } }
should be what you want
m
that doesn't seem to work sadly, looks like this is only for
plugins {}
but not for
buildscript {}
v
Hm, then probably using
Copy code
gradle.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. 🙂
👍 1
m
Yeah I know but I'm too lazy for that 🙈🙈
😂 2
I'll do the allprojects now and refactor one day when it's not Friday 😄
Thanks!
👌 1