Skip to content

Commit

Permalink
Make project.clj work with Leiningen 2.
Browse files Browse the repository at this point in the history
The :exclusions aren't necessary since cd-client and clojure-complete
both depend on the same version of Clojure as reply does.

Added a :main entry to make `lein run` a bit more convenient.
  • Loading branch information
technomancy authored and trptcolin committed Mar 31, 2012
1 parent 6cc21c7 commit 908ccbf
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,6 @@ pom.xml
*jar
/lib/
/classes/
/target/
.lein-failures
.lein-deps-sum
9 changes: 6 additions & 3 deletions project.clj
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,13 @@
[org.clojars.trptcolin/jline "2.7-alpha1"]
[org.thnetos/cd-client "0.3.4"]
[clj-stacktrace "0.2.4"]
[clojure-complete "0.2.1" :exclusions [org.clojure/clojure]]
[org.clojure/tools.nrepl "0.2.0-beta1"]]
[clojure-complete "0.2.1"]
[org.clojure/tools.nrepl "0.2.0-beta4"]]
:dev-dependencies [[midje "1.3-alpha4" :exclusions [org.clojure/clojure]]
[lein-midje "[1.0.0,)"]]
:aot [reply.reader.jline.JlineInputReader]
:source-path "src/clj"
:java-source-path "src/java")
:java-source-path "src/java"
:source-paths ["src/clj"]
:java-source-paths ["src/java"]
:main ^:skip-aot reply.main)

0 comments on commit 908ccbf

Please sign in to comment.