Skip to content

Commit

Permalink
Revert removing the mavenCentral repo from the muzzle check plugin (#…
Browse files Browse the repository at this point in the history
…6937)

Fixes #6932 
Replaces #6933 

@aaron-ai I finally understood what you meant in #6796 after seeing your
PR - initially I thought you were talking about some custom extension,
that's outside of this repository.
I added back the maven central fallback to the muzzle check plugin:
after investigating a bit, I found out that the repositories defined in
`settings.dependencyResolutionManagement` are not propagated at all (no
matter whether it's `afterEvaluate` or not) to the
`project.repositories`, and that the gradle issue
gradle/gradle#17295 is still valid.
  • Loading branch information
Mateusz Rzeszutek authored and dmarkwat committed Oct 22, 2022
1 parent 95d82c5 commit 4f53043
Showing 1 changed file with 12 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ if (hasRelevantTask) {
}

fun getProjectRepositories(project: Project): List<RemoteRepository> {
return project.repositories
val projectRepositories = project.repositories
.filterIsInstance<MavenArtifactRepository>()
.map {
RemoteRepository.Builder(
Expand All @@ -181,6 +181,17 @@ fun getProjectRepositories(project: Project): List<RemoteRepository> {
it.url.toString())
.build()
}
// dependencyResolutionManagement.repositories are not being added to project.repositories,
// they need to be queries separately
if (projectRepositories.isEmpty()) {
// Manually add mavenCentral until https://github.com/gradle/gradle/issues/17295
// Adding mavenLocal is much more complicated but hopefully isn't required for normal usage of
// Muzzle.
return listOf(RemoteRepository.Builder(
"MavenCentral", "default", "https://repo.maven.apache.org/maven2/")
.build())
}
return projectRepositories
}

fun createInstrumentationClassloader(): ClassLoader {
Expand Down

0 comments on commit 4f53043

Please sign in to comment.