The lein tag has no wiki summary.
6
votes
2answers
253 views
clojure lein: How do I include source from another directory in my project?
I have a lein project in one directory, and instead of using the .jar that gets downloaded when I run
> lein deps
I want to use the source from a cloned github repository (It has recent fixes ...
5
votes
1answer
105 views
How do I get Lein to work with JFreeChart and Dejcartes?
I'm trying to understand how to use lein with clojure and get it to download the correct .jar files on Win7 x64. As a specific example, I'm trying to use JFreeChart and Dejcartes.
My questions are ...
4
votes
2answers
84 views
user.clj and init.clj dont work?
this is my problem:
I need run some code every time I open a new repl, searching in google I found that I can use the file init.clj or the user.clj (with Leiningen)
This is the code I need to run:
...
3
votes
3answers
848 views
Setting up emacs/slime/swank for clojure with leiningen
Short version: errors when running M-x slime-connect or M-x clojure-jack-in when using lein swank to start the swank server.
I'm using emacs 24.0.50.1 on Ubuntu 10.10. I've installed the following ...
3
votes
1answer
58 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 ...
2
votes
1answer
93 views
writing and installing your own leiningen plugin
I have been able to run a custom plugin from within my projects project.clj, and even leiningen/plugin.clj (ie just a private plugin) - but when I go to put this plugin in its own project - I am ...
2
votes
1answer
46 views
Calling a clojure Leiningen plugin from another plugin
I am using lein (leiningen) with clojure - and writing a plugin to automate some common tasks. I would like to have my plugin depend on, and call another plugins functionality - but I am not sure how ...
1
vote
1answer
58 views
Exception running lein interactive
A project I have been working on has suddenly started throwing exceptions when using leiningen interactive. Running "lein test" is fine, my tests run and pass. The exception only occurs using ...
1
vote
1answer
68 views
How to use project namespace in SLIME REPL
I've installed lein with the swank plugin, Emacs, SLIME, and clojure-mode, and created a new project using lein new. I've called the project clojure-test. I then open ...
1
vote
1answer
72 views
How do I add unit tests to a Leiningen project?
Hi guys : I noticed that leiningen has a great unit test plugin - you just enter "lein test" :) . However, it's not clear how it "finds" the test files. Is there a specific folder I need to put them ...
1
vote
0answers
54 views
“lein deps” not working in cygwin. (window OS)
Exception in thread "main" java.lang.IllegalAccessError: repositories-for does not exits.
This is error while issuing command lein deps in cygwin.
1
vote
2answers
200 views
How to reload a clojure file in REPL
What is the preferred way of reloading functions defined in a Clojure file without having to restart the REPL. Right now, in order to use the updated file I have to:
edit src/foo/bar.clj
close the ...
0
votes
2answers
44 views
deftype failing in lein repl what am I doing wrong?
Per http://www.assembla.com/spaces/clojure/wiki/Datatypes
I should be able to type the following into a lein reply:
(deftype Bar [a b c d e])
(def b (Bar 1 2 3 4 5))
However when I do I ...
0
votes
1answer
82 views
Initialization hook for Clojure Noir WAR/Servlet (CloudFoundry)
I'm building a Clojure Noir web application to run as a WAR file in CloudFoundry.
In my project.clj I have:
:ring {:handler appname.server/handler}
In server.clj I create a handler using Noir:
...
0
votes
1answer
139 views
including other files into project.clj
Is it possible to include (import?) other files into the project.clj for a clojure project? (leiningen, specifically).
eg we have:
(defproject sample-clojure-cloudbees "1.0.0-SNAPSHOT"
...