Top "Leiningen" questions

Leiningen is a build automation and dependency management tool for Clojure projects

Java and Clojure with Leiningen

Is it possible to easily manage and compile native Java classes alongside Clojure in a project using leiningen? I am …

java clojure integration leiningen clojure-java-interop
Installing Leiningen for use with Clojure

I'm trying to install Leiningen on my local machine to get Clojure running, but I can't seem to get the …

clojure leiningen
How to force lein deps to re-fetch local jars/libs

using the following instructions: http://www.pgrs.net/2011/10/30/using-local-jars-with-leiningen/ I installed some local jars into local repository. When I want …

maven jar clojure leiningen
how do I suppress a inherited projects logback.xml file (2 logback.xml in a single project)?

I have project com.samedhi/base that has a logback.xml file and project com.samedhi/derive that also has …

logging clojure leiningen
How to run the jar made from 'lein jar' command?

This is a follow-up for this question. After running 'lein jar', I get 'myproject-1.0.0-SNAPSHOT.jar', which doesn't contain the …

clojure leiningen
Using clojure and leiningen with IDEs

I'm looking at switching my projects build from Ant to leiningen and wanted to know if there is a Clojure …

eclipse netbeans clojure intellij-idea leiningen
command line arguments with leiningen

I have recently started out with clojure, and I am using leiningen to create a small project. I am having …

clojure command-line-arguments leiningen
Standalone clojure app

I'm a beginner with clojure, only starting it yesterday. I have gathered that a simple way to create a standalone …

clojure classnotfoundexception leiningen
Any way to add dependency to lein project without REPL restart?

What I do now is open project.clj, add dependency there, run lein deps restart repl, then use, require and …

clojure leiningen
Display complete dependency tree with Leiningen

I understand that lein deps :tree displays a dependency tree of all the project dependencies (implicit and explicit). However, "each …

clojure tree dependencies leiningen