leiningen

N.B. The maintainers are on #leiningen on Libera chat IRC. Go there for direct support/bug reports.
jcsims 2021-03-04T04:50:09.033100Z

anyone happen to know in what order of repository aether resolves dependencies? I'm wondering what happens when there's a conflict (e.g. if I specify [org.clojure/clojure "1.10.0"] and that is hosted in a private repo, as well as maven central, which one will get picked up?)

alexmiller 2021-03-04T13:11:17.033700Z

I believe they will be searched in the order listed

alexmiller 2021-03-04T13:11:58.034600Z

I would expect maven central and clojars to be searched first the way lein is set up

jcsims 2021-03-04T16:55:07.035300Z

I expect so as well (maven is listed first after project.clj is read from disk, and clojars second, with the private repo last)