Zuriar
Zuriar

Reputation: 11764

Where does lein store Maven artefacts?

Where does lein store the various Jars it downloads from maven when I run:

lein deps

Thanks

Upvotes: 7

Views: 544

Answers (1)

xsc
xsc

Reputation: 6073

You can do

lein classpath

The result will contain all the JARs that are available to your project.

On my machine, the Maven repository (that's where the JARs usually go), is at:

~/.m2/repository

Upvotes: 11

Related Questions