Skip to content
Snippets Groups Projects
Unverified Commit 51c0cdc6 authored by Joshua Gleitze's avatar Joshua Gleitze Committed by GitHub
Browse files

fix(gradle): Also include buildscript repositiories (#5382)

parent d1eb3039
No related branches found
No related tags found
No related merge requests found
......@@ -41,7 +41,7 @@ allprojects {
doLast {
def project = ['project': project.name]
output << project
def repos = (repositories + settings.pluginManagement.repositories)
def repos = (repositories + buildscript.repositories + settings.pluginManagement.repositories)
.collect { "$it.url" }
.findAll { !it.startsWith('file:') }
.unique()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment