Unitl now, I know two ways to include my written libraries to a clojure project:
- Symlink the library file to the src dictionary of my current project, then just require the ns, that is declared in the lib.
- Making the library public via Clojars, then adding it to the lein dependencies of my current project. (and require the ns)
Is there a way in between? Say, I have developed something, that I don't want to publish yet, but I want to be able to easily require it in my repls and projects.