Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What are the leiningen default repositories?

Leiningen (https://github.com/technomancy/leiningen) looks into some default repositories to satisfy the dependencies specified in your project.clj.

I want to browse these repositories to see what's available out-of-the-box in leiningen. What are these repos and where can I look them up for my specific version of leiningen.

like image 390
Bernhard Kausler Avatar asked Jan 06 '11 13:01

Bernhard Kausler


1 Answers

As of October 2020, leiningen uses the following default repositories:

  • "central" - https://repo1.maven.org/maven2/
  • "clojars" - https://repo.clojars.org/

They are hardcoded into leiningen in the namespace leiningen.core.project as a default-repos dictionary.

like image 180
Bernhard Kausler Avatar answered Sep 18 '22 11:09

Bernhard Kausler