monger/project.clj

59 lines
3.3 KiB
Clojure
Raw Normal View History

2012-07-25 09:07:59 +00:00
(defproject com.novemberain/monger "1.2.0-SNAPSHOT"
2012-04-29 14:23:28 +00:00
:description "Monger is a Clojure MongoDB client for a more civilized age: friendly, flexible and with batteries included"
2012-06-27 06:07:50 +00:00
:url "http://clojuremongodb.info"
2012-03-10 18:13:39 +00:00
:min-lein-version "2.0.0"
:license {:name "Eclipse Public License"}
2012-04-26 17:14:48 +00:00
:dependencies [[org.clojure/clojure "1.3.0"]
[org.mongodb/mongo-java-driver "2.9.0-RC1"]
2012-08-15 06:23:02 +00:00
[com.novemberain/validateur "1.2.0"]
2012-07-13 21:03:14 +00:00
[clojurewerkz/support "0.6.0"]
[ragtime/ragtime.core "0.2.0"]]
:test-selectors {:default (fn [m]
(and (not (:performance m))
(not (:edge-features m))
(not (:time-consuming m))))
:focus :focus
2012-07-03 13:07:34 +00:00
:updating :updating
:indexing :indexing
:external :external
:cache :cache
:gridfs :gridfs
:command :command
:performance :performance
;; as in, edge mongodb server
:edge-features :edge-features
:time-consuming :time-consuming
:all (constantly true)}
2012-06-14 14:33:42 +00:00
:source-paths ["src/clojure"]
:java-source-paths ["src/java"]
2012-07-03 13:07:34 +00:00
:javac-options ["-target" "1.6" "-source" "1.6"]
2012-06-29 06:57:50 +00:00
:codox {:exclude [monger.internal.pagination
2012-06-29 07:49:22 +00:00
monger.internal.fn
2012-06-29 06:57:50 +00:00
;; these are not fully baked yet or have changes
;; that are not entirely backwards compatible with 1.0. MK.
monger.testkit
monger.ring.session-store]}
2012-06-17 23:08:14 +00:00
:mailing-list {:name "clojure-mongodb"
2012-06-06 19:32:04 +00:00
:archive "https://groups.google.com/group/clojure-mongodb"
:post "clojure-mongodb@googlegroups.com"}
2012-04-26 17:14:48 +00:00
:profiles {:1.4 {:dependencies [[org.clojure/clojure "1.4.0"]]}
:1.5 {:dependencies [[org.clojure/clojure "1.5.0-master-SNAPSHOT"]]}
2012-04-03 12:46:39 +00:00
:dev {:resource-paths ["test/resources"]
2012-06-29 07:49:22 +00:00
:dependencies [[clj-time "0.4.2" :exclusions [org.clojure/clojure]]
[org.clojure/data.json "0.1.2" :exclusions [org.clojure/clojure]]
[org.clojure/tools.cli "0.2.1" :exclusions [org.clojure/clojure]]
[org.clojure/core.cache "0.6.0" :exclusions [org.clojure/clojure]]
2012-06-29 06:57:50 +00:00
[ring/ring-core "1.1.0"]]
:plugins [[codox "0.6.1"]]
:codox {:sources ["src/clojure"]
:output-dir "doc/api"}}}
:aliases {"all" ["with-profile" "dev:dev,1.4:dev,1.5"]
"ci" ["with-profile" "dev:dev,1.4:dev,1.5"]}
2012-04-26 17:14:48 +00:00
:repositories {"sonatype" {:url "http://oss.sonatype.org/content/repositories/releases"
:snapshots false
2012-04-26 17:14:48 +00:00
:releases {:checksum :fail :update :always}}
"sonatype-snapshots" {:url "http://oss.sonatype.org/content/repositories/snapshots"
:snapshots true
:releases {:checksum :fail :update :always}}}
:aot [monger.conversion])