Leiningen is for automating Clojure projects

learn more… | top users | synonyms (1)

1
vote
2answers
32 views

How can I deploy a Leiningen template to Clojars?

I have created a Leiningen project on my local machine which I then turn into a template by doing: lein create-template webdb : Then I install the template: cd webdb lein install : which allows ...
1
vote
1answer
62 views

How to correctly import user defined classes in Clojure

I am using Leiningen and Clojure and for the life of me I can't understand why Clojure makes it so difficult just to import namespaces correctly. This is the following error This is what I have in my ...
1
vote
1answer
34 views

Clojure and Lein namespace issues using nREPL

I am having lots of "fun" trying to understand why the below won't work. After starting an nREPL session in the src directory of my lein project, I did the following: user> (require 'animals.core) ...
2
votes
1answer
41 views

compojure/clojure GET route with CSS gives plain text stylesheet response

Here is my code that has a function spilling out simple sytle sheets: (defroutes app-routes (GET "/style.css" [] (my-css-function))) (defn my-css-function [] "(css strings...)") And when I enter ...
5
votes
1answer
56 views

How can I share a Leiningen template?

I have created a Leiningen template for a Clojure webapp. How can I share this to other users of Leiningen? Update I am still trying to figure out how to do this. I created a template here: ...
2
votes
1answer
43 views

Use Leiningen With Local M2 Repository

I want to compile a local jar into my clojure project, I can do this easily with the following https://gist.github.com/stuartsierra/3062743 mkdir repo mvn install:install-file -DgroupId=local ...
1
vote
1answer
15 views

class clash with lein classloader - .class over .clj?

If I have two jars on my leiningen classpath: a.jar b.jar And a.jar contains c\d_init.class and b.jar contains c\d.clj Then I try to load the c.d namespace on my project: (ns e.core ...
0
votes
0answers
16 views

How to debug on intellij idea for leiningen

I installed leiningen in intellij idea , than i click View >> Tool Windows >> Leiningen , In the Leiningen menu, i click add leiningen file, choose /home/l/test/project.clj and Run Leiningen ...
1
vote
1answer
33 views

clojure lein jar clash resolution process

I have created a new project with lein new jar-clash-test cd jar-clash-test/ I have put the following in project.clj (defproject jar-clash-test "0.1.0-SNAPSHOT" :dependencies ...
1
vote
1answer
33 views

Clojure: War Compilation Failure with Missing Data File Dependency

I am working on an webapp that relies on a certain data file to be slurped at runtime. Without the datafile present I don't seem to be able to compile. Why is this? This is in my core.clj (def ...
0
votes
1answer
42 views

Working on gem within a Rails app

What's the easiest way to work on a plain-ole Ruby gem, and then quickly turn around and run it in a Rails app? I like to keep application logic out of Rails. Encourages code reuse across projects, ...
2
votes
1answer
45 views

'lein deploy clojars' does not ask for a passphrase

I want to deploy a Clojure library using Leiningen. I have done the following things: installed gpg created a gpg key-pair encrypted my Clojars credential into ~/.lein/credentials.clj.gpg installed ...
2
votes
2answers
103 views

Scripting with Clojure

I was trying to do some simple scripting work with Clojure. For example, I would load a json which contains a map from a file, remove a given key, and save it back to the file. With leiningen, seems ...
1
vote
1answer
100 views

Leiningen does not download dependency after re-installing it with the same version number

This is really important, and I am totally stumped and on a deadline. Help is greatly appreciated. I have a Clojure project called red-black, which in particular contains a file called ...
0
votes
0answers
85 views

How to use aleph(Clojure) with lein-ring on beanstalk

Please tell me normal program.I show you my code and error. Althogh I know how to operate my app correctly with "lein run",I would like to know it with "lein ring server". It is because that I will ...
1
vote
1answer
43 views

lein ring uberwar NullPointerException

Working backwards from example ch17-webapp-lein in "Clojure Programming" by Emerick, Carper, and Grand, I've boiled my web service down to the bare minimum, hoping to deploy it to Elastic Beanstalk. I ...
0
votes
0answers
11 views

NoClassDefFoundErrorException when downloading jClouds using lein script

I am trying to get the jars for jClouds so I attempted following their installation instructions (jClouds Installation Instructions). I am running RHEL 5.7 and after putting the lein script into ...
4
votes
1answer
148 views

Install clojure with leiningen on Ubuntu 13.04

So I go to clojure.org/downloads and it says I can get clojure via leiningen. Great. I go to leiningen.org and think I'm following the instructions. It says to get their bash script and put it in your ...
5
votes
1answer
78 views

Why does this simple main method never return when run by leiningen?

This piece of code returns immediately: user=> (dorun (pmap + [1 2] [3 4])) nil However, when I run the same piece of code in main method using lein: (ns practice.core) (defn -main [& ...
2
votes
0answers
65 views

Using Overtone in Jython / Clojure Dependencies in Jython

I'm currently working on a project that primarily uses Jython, but makes use of interop (using rik0's pyclj solution) with Clojure to utilize the Overtone library. Typically, leiningen is the primary ...
3
votes
1answer
73 views

How to configure leiningen's maven usage?

My problem is that leiningen is not working on my computer. I get errors like these: Could not transfer artifact lein-ring:lein-ring:pom:0.4.5 from/to central (http://repo1.maven.org/maven2): ...
2
votes
1answer
32 views

Clojure: How to set :repositories in project.clj

Im working on compiling jars from a local repository in leiningen. This works in my project.clj: :repositories {"local" ~(str (.toURI (java.io.File. "local_mvn_repo")))} but this fails: ...
2
votes
0answers
31 views

Another error trying “lein ritz” - Unable to resolve var: main/warn-chaining in this context, compiling:(ritz/swank/project.clj:98:11)

After solving this error I am now getting another error running lein ritz: Caused by: java.lang.RuntimeException: Unable to resolve var: main/warn-chaining in this context, ...
3
votes
2answers
102 views

How do I get leiningen to let me name my project what I want?

I'm trying to create a new project with leiningen but I keep getting the message: "Project names containing uppercase letters are not recommended and will be rejected by repositories like Clojars and ...
8
votes
2answers
156 views

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 so on. The thing is that I don't really like to restart repl because the startup time is ...
3
votes
4answers
94 views

Installing libraries with leiningen without creating project

I am learning Clojure and coming from a Ruby background. I am looking for something analogous to gem install <library>. The various incantations of lein install do not seem to fit this bill. ...
2
votes
0answers
59 views

How to add multiple licenses to project.clj?

How do I add more than one license to leiningen's project.clj (my project is dually licensed)?
1
vote
1answer
59 views

Getting Leiningen to download dependencies outside of a project

I'm learning Clojure, but I'm not really building whole projects for each little code snippet, I just drop them into a REPL. Occasionally code snippets I'm exploring require a dependency (usually ...
0
votes
1answer
100 views

lein-ritz fails on Windows with error=206, The filename or extension is too long

I am attempting to use lein-ritz from Windows and get this error. Is there some way to get lein-ritz to not pass the classpath on the command line? lein ritz java.io.IOException: Cannot run program ...
0
votes
1answer
58 views

how to use leiningen to download dependenies for the openimaj library

I'm trying to use the repository specified in: http://sourceforge.net/p/openimaj/wiki/OpenIMAJ%20Library/ and the metadata is here: ...
2
votes
4answers
115 views

how to get the version of the current clojure project in the repl

Is it possible to grab the project information within the clojure repl? For example.... if there was a project defined: (defproject blahproject "0.1.2"....) and running a repl in the project ...
0
votes
1answer
44 views

Attempting to use leiningen to deploy to Archiva… failing

I'm stuck trying to deploy a project from leiningen to a local archiva instance. I've got my project.clj setup correctly (I think) :repositories ^:replace [["snapshots" {:url ...
1
vote
0answers
67 views

With Leiningen, how do I install documentation?

I forked a library on github (seesaw) and ran "lein install" which made it available as a dependency in my local maven repo. But when I include it as a dependency in my other project, my IDE ...
4
votes
2answers
148 views

Why is any Java/Clojure program slowed down when run from Leiningen?

While benchmarking a Clojure app and trying to pin down performance problems, I noticed this peculiar behavior: even when the entire program is written in Java, when launched from Leiningen it seems ...
4
votes
1answer
107 views

how I can start lein ring server in background?

Now what I do is: $ lein ring server & Then what I see is: [1]+ Stopped lein ring server. Then I'm trying to use: $ fg 1 And also see that it's stopped. What do I do wrong and how can I run ...
0
votes
1answer
60 views

difference in lein repl namespace for lein apps and libraries?

I have no trouble calling functions in lein repl from my namespaces when I have created a lein new app .... But I don't seem to be able to call functions in lein repl when I just create a library ...
0
votes
3answers
61 views

Display loaded dependencies in leiningen REPL

I'm running into problems because the library I have appears to conflict with the published documentation. I had a few problems with getting the right version of things installed before, and I'm ...
0
votes
1answer
68 views

Clojure Java Interop - reference to field … can't be resolved

I am working on a clojure project where I want to create a class in Java and then instantiate that class and call a method from within my clojure code. My Java code is located in ...
3
votes
1answer
169 views

How does one start programming with Clojure in Windows?

I know it is possible to use CounterClockwise inside Eclipse, but I have been trying to get Leiningen to work so that I could use ClojureScript. I downloaded leiningen using git clone. It then says ...
1
vote
2answers
36 views

What is relationship between project.clj and dependent library jar files?

I am using lein 2.0 If a main application (defproject rexfer "1.0.1-SNAPSHOT" :description "Filters standard report from Patriot Properties' AssessPro." :dependencies [[org.clojure/clojure ...
3
votes
3answers
182 views

Leiningen repl EOF exception in project

Just installed Leiningen 2.1.2 (lein.bat) on Windows XP in D:\lein\, added this dir to path. Then I started repl D:\lein>lein repl and it runs fine. Also it runs in other dir and can execute ...
4
votes
1answer
57 views

Does Leiningen read maven settings in .m2/settings.xml?

I have several additional repositories in ~/.m2/settings.xml. I tried lein search and it doesn't find the packages in my repositories. How can I tell leiningen to search repositories in maven ...
1
vote
1answer
114 views

Loading Clojure Leiningen projects in Eclipse

Clojure/Leiningen/Eclipse (and Java) newby. I'm trying to get Eclipse to load a Clojure/Leiningen project, and I'm seeing confusing/contradictory results searching for Lein plugin solutions. Eclipse ...
0
votes
1answer
46 views

Pass argument to leiningen readable by project.clj

I have a project.clj file that I want to use differently depending on an argument passed in when called by leiningen. Here is my hypothetical sample project (defproject simple "0.0.1" ...
2
votes
1answer
240 views

Vim Fireplace can't connect to nRepl

I have my Vim setup with Fireplace, but when it tries to connect it throws an error: *Error detected while processing function 18_leiningen_init..18_leiningen_connect.. ...
2
votes
1answer
140 views

What is a Good Web Service Tutorial for Leiningen2, Clojure and Ring? [closed]

I am attempting to learn how to and then create a web service in clojure, and I am looking for tutorials that help illustrate the process. I am new to clojure. It seems like every tutorial is geared ...
0
votes
2answers
201 views

How to Run Jetty Example with Ring in Clojure

I am following along with this example on creating a simple web service in Clojure using ring and jetty. I have this in my project.clj: (defproject ws-example "0.0.1" :description "REST ...
0
votes
1answer
131 views

Compojure Example from Clojure in Action Not Working

I am working on the Compojure example from Clojure in Action page 232 (ns compojure-test.core (:gen-class) (:use compojure)) (defroutes hello (GET "/" (html [:h1 "Hello world"])) (ANY "*" ...
0
votes
1answer
69 views

Failed Retrieving Guava Libs from Maven

I am using leiningin to create and compile the first example from Mahout in Action on recommender systems. I am trying to build the dependencies, but Guava is failing. How can I fix this? $ lein ...
1
vote
0answers
101 views

lein ring server does not automatically rebuild

I am writing a small clojurescript project and I followed the numerous lein cljsbuild examples that use lein ring as a development web server. I used to run lein ring server to serve the website on ...

1 2 3 4 5 8