Skip to content

Commit

Permalink
update project.clj to be compatible with lein2
Browse files Browse the repository at this point in the history
  • Loading branch information
Brubacher, Federico authored and Brubacher, Federico committed Dec 7, 2012
1 parent 2675129 commit 1d87444
Showing 1 changed file with 11 additions and 8 deletions.
19 changes: 11 additions & 8 deletions project.clj
Expand Up @@ -8,12 +8,13 @@
["-Dlog4j.configuration=file:resources/log4j.properties"]
[])

:source-path "src/main/clj"
:test-path "src/test/clj"
:source-paths ["src/main/clj"]
:test-paths ["src/test/clj"]

:dependencies [[org.clojure/clojure "1.3.0"]
[org.clojure/tools.logging "0.2.3"]
[org.clojure/data.json "0.1.2"]
[org.clojure/tools.trace "0.7.3"]

; aws-java-sdk-1.3.3 does not specify the correct httpclient, so we do it explicitly
[org.apache.httpcomponents/httpclient "4.1.1"]
Expand All @@ -33,15 +34,12 @@

:dev-dependencies [[robert/hooke "1.1.2"] ;for leiningen test-selectors
[org.clojure/tools.trace "0.7.1"]
[midje "1.3.1"]
[lein-midje "1.0.8"]
[lein-midje "2.0.3"]
[midje "1.5-alpha2"]
[com.offbytwo.iclojure/iclojure "1.1.0"]
[clojure-source "1.3.0"]]

:test-selectors {:default (fn [v] (not (or (:integration v) (:manual v))))
:integration :integration
:manual :manual
:all (fn [v] (not (:manual v)))}


:repl-init lemur.repl
:main ^:skip-aot lemur.repl
Expand All @@ -51,4 +49,9 @@
; Launch irepl:
;java -cp lib/*:lib/dev/* com.offbytwo.iclojure.Main

:test-selectors {:default (fn [v] (not (or (:integration v) (:manual v))))
:integration :integration
:manual :manual
:all (fn [v] (not (:manual v)))}

:aot [lemur.core])

0 comments on commit 1d87444

Please sign in to comment.