Skip to content

Commit

Permalink
Andrei.salavei/decrease maven local priority (#929)
Browse files Browse the repository at this point in the history
Decrease maven local repo priority to fix CI builds
  • Loading branch information
ASalavei authored Dec 8, 2023
1 parent 281be05 commit 036881a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion buildSrc/repos.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -59,8 +59,9 @@ def addMavenRepositories(RepositoryHandler handler) {
}
def isJBFork = true
if (isJBFork) {
handler.mavenLocal()
handler.mavenCentral()
// Keep mavenLocal() repository below mavenCentral to avoid issues with stdlib imports
handler.mavenLocal()
handler.google()
handler.gradlePluginPortal()
handler.maven {
Expand Down

0 comments on commit 036881a

Please sign in to comment.