Let's say I was hacking on a clojure library I was using in my project:
/User/SCdF/Code/myproject/
/User/SCdF/Code/other-peoples-projects/clojure-library-cloned-from-github
Currently, when I make changes in clojure-library-cloned-from-github
I then run lein install
to push my new version to the local repository (I've changed my and their project.clj
to point to a newer -SNAPSHOT
version of the library so it gets updated every time) and then restart / run lein deps
on myproject
.
Is there a way I can tell leiningen to look in ../../clojure-library-cloned-from-github
for the source code for the library instead of using a maven and jars, so that when I make changes to the code they're seen at runtime?
checkouts/
to.gitignore
– Deidradeidre