leiningen - how to add dependencies for local jars?

42,103

Solution 1

You could put your private jars in lib/ and they'd be on the classpath for the purposes of lein swank and the like; this does seem to defeat the point of using a dependency management tool, though if you don't actually want those dependencies managed, you could treat Leiningen as an "open source dependencies management tool" and maybe be careful with lein clean.

As the situation becomes more complex -- there's a larger number of private jars involved, they evolve and you need to take some versioning info on them into account -- Arthur's idea of creating a private Maven repo may be more appropriate.


(The HR signifies Leiningen-specific part cut-off point... Continue below for information on the general build / dependency management tooling story in Clojure land, including some links which I think could come in very handy in your situation.)

Also, as of yet, there is no universal agreement on the question of which is the best build tool for Clojure, and Leiningen, while gaining in mindshare, is also constantly gaining in the areas features and polish -- meaning, in particular, that it's not yet complete. Here's a quote from Stuart Halloway, the author of Pragmatic Bookshelf's "Programming Clojure": "My 2c: Leiningen is an important step, but there is still plenty to do." For the full posting and a very interesting discussion re: build tools and the like in Clojure space, see the Leiningen, Clojure and libraries: what am I missing? thread on the Clojure Google group. Many participants specifically mention the need to have local dependencies not contained in any repositories, local or otherwise, and elaborate on the solutions they've come up with for such scenarios. Perhaps you could see if there's anything over there which can solve your problem now / might solve it in the future, when feature sets mature?

Anyway, it is possible that Leiningen may not in fact have a good story ready yet for some complex scenarios. If you feel this may be true of your case (and I mean after you consider the private repo idea), here's some links to maven-based alternatives taken from the above mentioned thread: polyglot maven, clojure-maven-plugin; this blog posting aims to be useful to people trying to use maven with Clojure. As I recall, Meikel Brandmeyer (also on SO under his online handle of kotarak) uses Gradle (a Groovy build system) with a plugin to accomodate Clojure called Clojuresque; I never tried it myself, as don't know the first thing about Groovy, but he claims to run a very nice building act with it and I believe it's got nothing to do with maven -- something which is a plus in and of itself for some of us. :-)

Solution 2

Just use :resource-paths in your project.clj file. I use it, e.g. to connect to Siebel servers. Just created a resources directory in my project directory and copied the jar files in there. But of course you could use a more generic directory:

(defproject test-project "0.1.0-SNAPSHOT"
:description "Blah blah blah"
...
:resource-paths ["resources/Siebel.jar" "resources/SiebelJI_enu.jar"])

Then from the lein repl I can create Siebel Data Bean instances, e.g.

(def sbl (com.siebel.data.SiebelDataBean.))
(.login sbl "siebelServer" "user" "password")
...

If you have a newer Java version you can of course use wildcards in your path specification like this for a more general directory:

:resource-paths ["/tmp/SiebelJars/*"]

Solution 3

  1. Create a directory in the project:

    mkdir maven_repository

  2. Add local jars to this repository:

    For example, this command adds the jaad-0.8.3.jar file to the maven repository:

    mvn deploy:deploy-file -Dfile=jaad-0.8.3.jar -DartifactId=jaad -Dversion=0.8.3 -DgroupId=jaad -Dpackaging=jar -Durl=file:maven_repository

  3. Add the following to project.clj

    :repositories {"local" "file:maven_repository"}

  4. Now a regular lein deps should work:

    $ lein deps Downloading: jaad/jaad/0.8.3/jaad-0.8.3.pom from local Transferring 0K from local [WARNING] *** CHECKSUM FAILED - Error retrieving checksum file for jaad/jaad/0.8.3/jaad-0.8.3.pom - IGNORING

The warning can be ignored, since the jar will be checked into the project and not downloaded from the internet.

Original source: Using local JAR's with Leiningen (changed since copying)

Solution 4

I find lein pom; lein jar; lein install works well when developing libraries.

Do this in the library being developed and your application requiring it will use it without any :repositories foo required.


Alternatively, lein do pom, jar, install is slightly more concise.


This allows calling the library like any other :dependencies [[project-name "version"]]

Solution 5

I believe the "correct" approach is to create a private Maven Repository so that you can store the jars in a single location and all your branches etc will pick up the changes. This may be overkill for what your doing. I'm curious if these is an easier way.

Share:
42,103
signalseeker
Author by

signalseeker

data scientist + hacker + quant trader

Updated on February 13, 2020

Comments

  • signalseeker
    signalseeker about 4 years

    I want to use leiningen to build and develop my clojure project. Is there a way to modify project.clj to tell it to pick some jars from local directories?

    I have some proprietary jars that cannot be uploaded to public repos.

    Also, can leiningen be used to maintain a "lib" directory for clojure projects? If a bunch of my clojure projects share the same jars, I don't want to maintain a separate copy for each of them.

    Thanks

  • signalseeker
    signalseeker about 14 years
    Thanks, I will look into it. Although I have to say maven strikes fear in my heart. If you know any simple step-by-step examples to do that, please point me to it. Why are builds so damn complicated in the java world?
  • goger
    goger almost 12 years
    Nice steps at this link. This was very helpful to me.
  • David J.
    David J. almost 11 years
    Re: "there is no universal agreement on the question of which is the best build tool for Clojure"... As of today, it would seem that Leiningen is the run-away standard now. 2013 survey results: lein-survey-2013.herokuapp.com/results
  • dkinzer
    dkinzer almost 11 years
    Compared to the other solutions this is so simple and it works! No need to install maven. Thanks.
  • pondermatic
    pondermatic over 10 years
    Lein 2 doesn't support globbing, but the github.com/dchelimsky/lein-expand-resource-paths plugin in available if you need to.
  • Pascal
    Pascal over 10 years
    As of Leiningen v2, the lib/ directory functionality has been removed. See: github.com/technomancy/leiningen/wiki/…
  • interstar
    interstar over 9 years
    How do you reference the resulting jar in a lein project file?
  • roboli
    roboli over 9 years
    Like any other :dependencies [[project-name "version"]]
  • David Williams
    David Williams over 9 years
    This is the best answer I've seen so far. The local mvn install doesn't appear to work for me anymore.
  • Tobias Domhan
    Tobias Domhan about 9 years
    This doesn't work with uberjar, as uberjar will add the dependency jars in the jar, instead of adding the dependencies class files.
  • Tobias Domhan
    Tobias Domhan about 9 years
    with newer versions you might want to use mvn deploy:deploy-file instead of install:install-file and to specify -Durl=file:repo instead of -DlocalRepositoryPath=repo. In projects.clj you can then use: :repositories {"local" "file:maven_repository"} See: gist.github.com/stuartsierra/3062743 (I edited the question, but still needs to be approved)
  • endbegin
    endbegin about 8 years
    This works great on Windows as well. No need to install maven as has already been mentioned. I have tried it with IntelliJ + Cursive on Windows and it work perfectly. Did a "lein pom; lein jar; lein install" on the Windows command line.
  • Mars
    Mars over 7 years
    As of today, Leiningen is probably still the most popular, but Boot is also popular.
  • Tyler
    Tyler about 7 years
    This blog post describes how to do it: spacjer.com/blog/2015/03/23/…
  • neverfox
    neverfox over 6 years
    You only need to do lein install. It will build the jar and pom for you.