Tagged Questions
Leiningen is a build tool for Clojure
40
votes
4answers
4k views
23
votes
4answers
2k views
leiningen - how to add dependencies for local jars?
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 ...
21
votes
2answers
2k views
Best practices in building and deploying Clojure applications: good tutorials?
I am new to Clojure, and am beginning to experiment with building an application.
So far, everything I've seen about tutorials on compiling Clojure programs involves interactivity. For example, ...
18
votes
5answers
3k views
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 IDE (intellij, eclipse, netbeans) for which the "build" and "debug" buttons will still work?
14
votes
3answers
937 views
How to Reload files upon save when using swank+leiningen+emacs
I'm looking to set up slime+lein-swank to reload source files referenced from the repl when i save the file. currently i do this:
edit file
save file
switch to repl
(use :reload-all ...
13
votes
1answer
685 views
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 working at a pretty low level (with netty nio) and thinking that some of the ...
10
votes
6answers
2k views
leiningen: missing super-pom
if I enable eith the clojure-couchdb or swank-clojure then lein deps fails because org.apache.maven:super-pom:jar:2.0 is missing
:dependencies [[org.clojure/clojure "1.1.0-master-SNAPSHOT"]
...
10
votes
1answer
387 views
Can I connect two emacs/slimes to the same swank instance?
when I start swank through leiningen it accepts the next slime connection and off I go. I would really like to have several emacs instances connect to the same swank instance. Can I do this? can I do ...
9
votes
2answers
134 views
How can I set up leiningen to work with multiple projects?
I have multiple, separate leiningen projects that ostensibly could depend on one-another.
Example:
~/projects/mywebapp (my own project)
~/projects/noir (a clone of the github repo)
...
9
votes
1answer
469 views
What is an elegant way to set up a leiningen project that requires different dependencies based on the build platform?
In order to do some multi-platform GUI development, I have just switched from GTK + Clojure (because it looks like the Java bindings for GTK never got ported to Windows) to SWT + Clojure. So far, so ...
9
votes
1answer
937 views
How to install a leiningen plugin?
How do I install a leiningen plugin?
For example, leiningen-run?
I see this thing called "clojars.org", and how to "push" to it, but I don't see anything about "pulling" from it.
8
votes
2answers
169 views
clojure and leiningen - using a git repository as dependency
Is it possible to have leiningen pull a project directly from a git repository (on github) as a dependency?
Using Bundler with Ruby, it is possible to map a gem to a git repo, allowing for rapid ...
6
votes
2answers
125 views
How to use leiningen to develop using local jars?
I realize that this question is pretty much the exact question found here. However, seeing as that question is 1.5 years old (or so), I would like to revisit it. How does one add local dependencies ...
6
votes
1answer
97 views
How are clojure namespaces looked up?
To start off I am not a Java programmer, so it would be helpful if your answers are not defined in terms of Java (inasmuch as that makes sense).
I have a leiningen project (specifically a web project ...
6
votes
3answers
522 views
Where to find valid version numbers for dependencies in Leiningen
I'm new to Clojure and Leiningen, and I've determined that some of what I'll want to use is located in clojure.contrib.generic.math-functions. I found API information for that at ...
6
votes
2answers
274 views
Keeping dependency versions up to date in Leiningen projects
Is there a simple way to find out what versions of dependencies are available using Leiningen?
E.g., if I have a web app which depends on Hiccup and Compojure, how can I be sure that I'm on the ...
5
votes
2answers
135 views
Resources in Clojure applications
I am using Leiningen in my Clojure project (a GUI application) and created a "resources" directory under the project root to hold images that my app uses.
When I am running my app locally during ...
5
votes
2answers
650 views
clojure lein (read-line) stdin woes
So regular clojure repl works fine, (read-line) collects input, then echos it. Using lein repl though, never echoes any input characters, nor does it ever allows me to return from any stdin reading ...
5
votes
1answer
822 views
Jump to function definition in Emacs + Slime/leiningen-Swank + Clojure
I'm using Emacs with clojure mode and slime connected to a swank server produced by running lein swank and would really love to be able to easily jump to function definitions within my project. Can I ...
5
votes
2answers
988 views
How can I configure my project.clj so that Leiningen finds my sources under a non-standard directory structure?
It seems Leiningen's compile task looks for source packages to start immediately under the /src directory. I use both Java and Clojure in my project, so my /src directory looks like this:
...
4
votes
2answers
91 views
Exception when connecting to swank-server
When trying to M-x slime-connect to a swank server running in a clojure app I get a user> prompt but as soon as I start typing the connection breaks as the app throws:
exception in read loop
...
4
votes
2answers
94 views
Automating Leiningen local dependency management
I am using a local maven repository to house some code I am using to develop a project. I have cited this repository in my project.clj file, and am now able to rely on local jars in this way (how to ...
4
votes
2answers
175 views
error using swank-cdt for debug clojure : “ unabled to add tools.jar to classpath”
I'm learning how debug a clojure app...I've tried several tools and no one has convinced me..now I'm trying swank-cdt which is based in CDT...I've read the instruction here:
...
4
votes
1answer
327 views
How use repl with emacs and leiningen
I'm beginning my learning in clojure and a hard part of this has been work with libraries and dependencies...I've worked with javascript and ruby and they have rubygems and npm..really simple...now ...
4
votes
1answer
484 views
How to install Clojure on Ubuntu 10.04 from Github repo with no clojure.jar
I've been trying to install Clojure on my computer to learn and use. I'm running Ubuntu 10.04, and have installed the latest Sun Java SDK and environment from Synaptic.
Searching with Google, I found ...
4
votes
3answers
386 views
Stopping infinite loops while running clojure tests in emacs with leiningen and swank/slime
In certain kinds of code it's relatively easy to cause an infinite loop without blowing the stack. When testing code of this nature using clojure-test, is there a way to abort the current running ...
4
votes
4answers
302 views
For a lein project, why is lib/ in .gitignore?
I'm relatively new to Clojure and Java. Why is the lib folder in a lein project not added to the git repo of a lein project? I would think it that would be convenient to have all the necessary jars ...
4
votes
2answers
436 views
Unicode Clojure unit test output
When unit testing some code that translates ascii sequences into unicode characters I have found a problem with the output of Clojure tests.
I have tested that my terminal can output unicode ...
4
votes
1answer
770 views
Jar produced with lein uberjar fails on NoClassDefFoundError
I have a simple web app with this project.clj:
(defproject squirrel-money "1.0.0-SNAPSHOT"
:description "Squirrel Money"
:dependencies [[org.clojure/clojure "1.2.0"]
...
4
votes
1answer
520 views
Problem using redis-clojure with Leiningen
Hey, I'm new to Clojure and Leiningen and a bit stuck. I've managed to setup a project with Leiningen. I'm able to compile it into an uberjar and run the repl. I've also managed to load a dependency ...
4
votes
3answers
512 views
Environment variable CLASSPATH <> Clojure's CLASSPATH. Why?
Here I check the environment variable CLASSPATH
daniel@daniel-laptop:~/ps/clojure/projects/ring-tutorial$ echo $CLASSPATH
/home/daniel/ps/clojure/projects/ring-tutorial/src
Here I check what java ...
4
votes
3answers
312 views
Push to Nexus Using Leiningen
I wrote a Clojure project using Leiningen and would now like to add the resulting jar to a Sonatype Nexus server. I installed lein-clojars, since this comes with a push command that seems to accept an ...
4
votes
1answer
613 views
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-1.2.0-beta1.jar and clojure-contrib-1.2.0-beta1.jar.
And ...
4
votes
1answer
395 views
Uninstall/Reinstall leiningen(clojure server) related issues
As I asked and answered here, I found that running 'sudo lein deps causes some problem that forces me to run 'sudo lein swank', which is annoying. And I was told not to use sudo. I use Mac OS X ...
3
votes
0answers
111 views
using slimv with clojure
Are there any docs on using slimv with clojure?
I got it connected to a lein swank and have a working repl but can't figure out how to actually do anything with it. How do you get it to load a lein ...
3
votes
0answers
95 views
Tool to convert Maven pom.xml to leiningen project.clj
I want to use the leiningen checkouts/ directory feature, but this feature requires that the project under checkouts/ checked out directory contains a project.clj. I have a project (pallet) that has a ...
3
votes
1answer
86 views
Unresponsive Clojure REPL after exception
If I start a REPL and then do something that throws an exception like (use 'non-existent-thing) ** then after that the REPL ceases to evaluate anything I enter. Is there a special key I can press to ...
3
votes
1answer
147 views
Confusing Clojure Compile Errors — Bad line reporting?
I am getting compile errors while running lein run on my Noir project. It was working, and then suddenly it stopped working. My suspicion was that the error is connected with trying to include ...
3
votes
1answer
74 views
Leiningen: How to set Maven groupId and packaging properties in project.clj
I have a Clojure project that I would like to package and use in one of my Java projects that uses Maven.
When I generate a pom.xml file using Leiningen, it sets the groupId to artifactId, but I ...
3
votes
1answer
193 views
Compojure: lein-ring in production?
It seems that people sugget the use of lein-ring for a no-brainer deploy of a Compojure application. Isn't it just meant for development? I've benchmarked the same app running with lein-ring vs packed ...
3
votes
1answer
55 views
Setting a project property to a non literal string appears to not work in leiningen
Take a simple project file:
(defproject sample-clojure-cloudbees "1.0.0-SNAPSHOT"
:description "Sample clojure application - clojure 1.3 !"
:blah "hello")
When I read (get project :blah) I get ...
3
votes
1answer
654 views
upgrading lein project from clojure 1.2.1 to 1.3.0-beta1
I have a leiningen project that uses clojure 1.2.1. I would like to add a dependency to a package that requires clojure 1.3.0-beta1. So I decided to upgrade my project to the newer version.
To be ...
3
votes
2answers
252 views
How can I restart swank in Leiningen's interactive mode?
Let's say I'm running Leiningen in interactive mode ('lein interactive') and have started a Swank Clojure server ('swank'). Now I want to kill/restart the Swank server without killing Leiningen as ...
3
votes
1answer
199 views
What are the leiningen default repositories?
Leiningen (https://github.com/technomancy/leiningen) looks into some default repositories to satisfy the dependencies specified in your project.clj.
I want to browse these repositories to see what's ...
3
votes
2answers
571 views
command line arguments with leiningen
I have recently started out with clojure, and am using leiningen to create a small project. I am having troubles in getting leiningen to behave with command line arguments. The following is my ...
3
votes
2answers
744 views
'lein jar' and 'lein uberjar' not setting the main-class properly
I ran lein uberjar on my project and it created the corresponding jar files. When I run the jar a ClassNotFoundException: explodingdots.core is thrown. I specified explodingdot.core as my main class. ...
3
votes
3answers
388 views
Equivalent of 'lein swank' to other Lisp/Scheme implementations with emacs/slime
I've been using emacs/slime for coding lisp, but with Clojure I found 'lein swank'.
I must say that it's pretty useful, as I can connect to a server that runs clojure.
How about the other Lisp ...
3
votes
2answers
746 views
How to setup the classpath when running the jar made from 'lein uberjar'?
I have a hello.clj as follows.
(ns hello)
(defn hi [] (println "HI"))
Normally, I can use this function from main.clj as follows. The hello.clj is in the same directory that contains main.clj. ...
3
votes
2answers
281 views
Is conjure-contrib.jar not standardized now?
This page introduces a lot of clojure libraries. And this page also comments to consider using the clojure-contrib.
Why the clojure-contrib.jar is different in size? The leiningen's ...
3
votes
3answers
418 views
'leiningen' related commands too slow with Mac OS X
I installed and run lein, but it seems to slow on My Mac (10.6.4).
Running 'time lein help' gives me
real 11m8.674s
user 0m54.297s
sys 1m32.621s
I tried once more.
real 15m25.560s
...