beginners

Roshan Komaravolu 2025-07-25T04:16:39.059839Z

deps.edn reference says > The Maven procurer always uses two built-in repositories that are always checked first in this order: >

{"central" {:url ""}
>  "clojars" {:url ""}}
But my understanding is that maps don't guarantee order. What is the actual order? Can I prioritise my own repos over these?

Alex Miller (Clojure team) 2025-07-25T10:25:03.909549Z

These two are special cased to do what it says, and no you can not prioritize over them

👍 1