Questions tagged [leiningen]

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

Leiningen is a project automation tool for Clojure, where you describe your project with Clojure. Leiningen is extensible through plugins and provides functionality to build complex projects and manage dependencies.

1285 questions
0
votes
1 answer

Java JAR does not contain correct dependencies

I am attempting to create a uberjar of my java project with a dependency for the mongodb-java-driver found here which includes the com.mongodb.* packages. Currently I have tried using leiningen versions 2.0.0-preview4 and 1.7.1, and…
Ian
  • 483
  • 1
  • 5
  • 14
0
votes
1 answer

Relationship Between :aot Directive and Warning: *delimiter* not declared dynamic

I am using Leiningen 1.7.1 and Clojure 1.3.0. My question is what, if any, is the relationship between the :aot compiler directive and an error message indicating my defs are not dynamic? Here are the details: If I remove the :aot directive from…
octopusgrabbus
  • 10,555
  • 15
  • 68
  • 131
-1
votes
1 answer

install leiningen windows cygwin

I'm trying install leiningen on windows and cygwin. When executed the last shell script seems works fine. Below the execution log: $ ./lein.sh which: no lein.sh in…
Thalys
  • 99
  • 9
-1
votes
2 answers

Unable to resolve symbol error in Clojure?

Here is my code. (use '[leiningen.exec :only (deps)]) (deps '[[org.clojure/clojure "1.4.0"] [org.clojure/data.zip "0.1.1"]]) (deps '[[clj-http "0.5.8"] [org.clojars.rorygibson/clj-amazon "0.3.0-SNAPSHOT"]] ) (def ACCESS-KEY "my…
codingXeno
  • 65
  • 2
-1
votes
1 answer

Clojure Leiningen test FAILs not shown in error summary

When running lein test on my current Clojure project, I got two test failures but the summary stated that I got 0 failures. See output snippet below: $ lein test FAIL in clojure.lang.PersistentList$EmptyList@1 (config.clj:53) expected: (= (some-fn…
ec'mike
  • 9
  • 3
-1
votes
1 answer

Vector expected in Clojure?

Currently I am getting this error. Parameter declaration symmetrize-body-parts should be a vector, compiling:(braveclojure/core.clj:41:49) My core.clj file (ns braveclojure.core (:gen-class)) (def asym-hobbit-body-parts [{:name "head" :size 3} …
trendsetter37
  • 582
  • 8
  • 15
-1
votes
2 answers

lein repl stopped working

I hadn't used lein repl for a couple days on my home computer. Now, when I try running it up, it times out. Running bash -x lein repl I see it hangs at: + java -Xbootclasspath/a:/.../leiningen-2.5.0-standalone.jar \ -Dfile.encoding=UTF-8 \ …
toolkit
  • 49,809
  • 17
  • 109
  • 135
-1
votes
3 answers

Unable to install LightTable for Ubuntu

I got Ubuntu 14.04 and realy whant to try LightTable. But cant even install it. All troubles I got are about leiningen. I reproduced this steps just like manual said without any errors: First install or update leiningen. Download the lein script.…
weird-dreams
  • 159
  • 2
  • 16
-2
votes
1 answer

When I deploy to clojars, should org.clojure/clojure be added or be removed to :dependencies?

When I deploy to clojars, should org.clojure/clojure be added or be removed in :dependencies in project.clj? In following tutorial, org.clojure/clojure is added in :dependencies in …
mrcsce
  • 7
  • 1
-2
votes
1 answer

Need your help on running clojure library via leiningen

I found a solution for minimum hitting set on github: https://github.com/bdesham/hitting-set and then tried to use it. The solution is clojure library so I downloaded leiningen to try to run it. I read the readme file from github link but I still…
HungTran
  • 1
  • 1
1 2 3
85
86