Reputation: 5964
Unitl now, I know two ways to include my written libraries to a clojure project:
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.
Upvotes: 1
Views: 108
Reputation: 20194
The easy way to do this is to run lein install
in the lib, then require it as you would any other dependency using name and version in your project file.
Upvotes: 3