We still need to add more tests & a few minor features to our query DSL, support authentication and refactor things here and there but the API is largely locked down and the jigsaw is falling into place. Per discussion with Alex.
10 lines
592 B
Clojure
10 lines
592 B
Clojure
(defproject com.novemberain/monger "1.0.0-SNAPSHOT"
|
|
:description "Monger is an experimental idiomatic Clojure wrapper around MongoDB Java driver"
|
|
:license { :name "Eclipse Public License" }
|
|
:dependencies [[org.clojure/clojure "1.3.0"]
|
|
[org.mongodb/mongo-java-driver "2.7.1"]
|
|
[com.novemberain/validateur "1.0.0-SNAPSHOT"]]
|
|
:dev-dependencies [[org.clojure/data.json "0.1.2"]
|
|
[clj-time "0.3.2-SNAPSHOT" :exclusions [org.clojure/clojure]]]
|
|
:dev-resources-path "test/resources"
|
|
:warn-on-reflection true)
|