Skip to content

Commit

Permalink
project.clj: update {src,test}-paths to run tests with lein 2
Browse files Browse the repository at this point in the history
  • Loading branch information
jeffdik authored and David Nolen committed Oct 30, 2012
1 parent 715aebf commit d36af9f
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions project.clj
Expand Up @@ -3,10 +3,14 @@
:extra-classpath-dirs ["checkouts/clojurescript/src/clj"
"checkouts/clojurescript/src/cljs"]
:parent [org.clojure/pom.contrib "0.0.25"]

;; lein 1
:source-path "src/main/clojure"
:test-path "src/test/clojure"
:source-paths ["src/main/clojure"
"src/test/clojure"]

;; lein 2
:source-paths ["src/main/clojure"]
:test-paths ["src/test/clojure"]
:dependencies [[org.clojure/clojure "1.4.0"]
[org.clojure/tools.macro "0.1.1"]
[com.datomic/datomic-free "0.8.3551" :scope "provided"]]
Expand Down

0 comments on commit d36af9f

Please sign in to comment.