Rodrigo Munera
10/23/2023, 4:47 PMval repos: RepositoryHandler by configurations.creating {
maven("mycompanyRepo")
maventCentral()
}
buildscript {
repositories = repos
}
Vampire
10/23/2023, 5:12 PMbuildscript { ... }
repositories you should usually not use anyway.
If you feel a need for them, it is most often better to create a custom task or plugin with the necessary logic to keep the actual buildscript more declarative.