ritesh singh
05/15/2025, 7:57 AMritesh singh
05/15/2025, 7:59 AMmavenCentral() is getting added somewhere in the chain, even though the project didn't declare it explicitly.Vampire
05/15/2025, 8:09 AMritesh singh
05/15/2025, 8:13 AMdependencyResolutionManagement {
@Suppress("UnstableApiUsage")
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
......
}
which prevents and should theoretically.
We point or pull deps from our own artifactory, where the deps are mirrored. Started to notice 429, streaming from public maven for few coordinates.ritesh singh
05/15/2025, 8:14 AMVampire
05/15/2025, 8:26 AMritesh singh
05/15/2025, 8:31 AMpluginManagement {
repositories {
maven(url = "https://...")
}
}
Yep, looking at iterating it and see if something stands out.
> Which coordinates are affected
Noticed few pointing at - https://repo.maven.apache.org/maven2/com/github/ajalt/mordant/mordant/3.0.2/mordant-3.0.2.pom which should be fetched from our own proxy.ritesh singh
05/15/2025, 9:11 AMrulesMode.set(RulesMode.FAIL_ON_PROJECT_RULES)
🤔Vampire
05/15/2025, 9:23 AMrulesMode?Vampire
05/15/2025, 9:23 AMVampire
05/15/2025, 9:24 AMritesh singh
05/15/2025, 9:26 AMdependencyResolutionManagement {
@Suppress("UnstableApiUsage")
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
rulesMode.set(RulesMode.FAIL_ON_PROJECT_RULES)
}Vampire
05/15/2025, 9:37 AMritesh singh
05/15/2025, 9:39 AM