I have project on my git repo and one of the jars that it uses, is actually inside the git repository. Here is the structure
project /lib/mylib.jar /clojure_project/project.clj
I need to add mylib.jar as dependecy but not to have any maven repos just local or git or some kind of straightforward way like in java/android... I am not experienced with clojure.
I have tried many options: Use maven local repo as suggested here: https://www.pgrs.net/2011/10/30/using-local-jars-with-leiningen/ Problem is each time somebody clones the project they have to readd the maven repo plus download a bunch of maven staff.
Then there is the git approach here: clojure and leiningen - using a git repository as dependency but it didn't work for me also I don't want to install any progins. Is there another way to add jars to clojure project?