2018-12-10 12:28:35 +00:00
|
|
|
(defproject com.novemberain/monger "3.6.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"
|
2015-01-10 15:25:32 +00:00
|
|
|
:min-lein-version "2.5.1"
|
2014-11-16 02:11:38 +00:00
|
|
|
:license {:name "Eclipse Public License"
|
|
|
|
|
:url "http://www.eclipse.org/legal/epl-v10.html"}
|
2018-12-02 18:24:29 +00:00
|
|
|
:dependencies [[org.clojure/clojure "1.9.0"]
|
|
|
|
|
[org.mongodb/mongodb-driver "3.9.1"]
|
2015-06-27 19:13:23 +00:00
|
|
|
[clojurewerkz/support "1.1.0"]]
|
2012-05-27 20:43:45 +00:00
|
|
|
:test-selectors {:default (fn [m]
|
|
|
|
|
(and (not (:performance m))
|
2012-07-13 23:24:10 +00:00
|
|
|
(not (:edge-features m))
|
|
|
|
|
(not (:time-consuming m))))
|
2012-11-27 19:25:24 +00:00
|
|
|
:focus :focus
|
|
|
|
|
:authentication :authentication
|
|
|
|
|
:updating :updating
|
|
|
|
|
:indexing :indexing
|
|
|
|
|
:external :external
|
|
|
|
|
:cache :cache
|
|
|
|
|
:gridfs :gridfs
|
|
|
|
|
:command :command
|
|
|
|
|
:integration :integration
|
|
|
|
|
:performance :performance
|
2012-05-27 20:43:45 +00:00
|
|
|
;; as in, edge mongodb server
|
2012-07-13 23:24:10 +00:00
|
|
|
:edge-features :edge-features
|
|
|
|
|
:time-consuming :time-consuming
|
2012-05-27 20:43:45 +00:00
|
|
|
:all (constantly true)}
|
2012-06-14 14:33:42 +00:00
|
|
|
:source-paths ["src/clojure"]
|
|
|
|
|
:java-source-paths ["src/java"]
|
2018-12-07 16:55:34 +00:00
|
|
|
:javac-options ["-target" "1.8" "-source" "1.8"]
|
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"}
|
2018-12-02 18:24:29 +00:00
|
|
|
:profiles {:1.8 {:dependencies [[org.clojure/clojure "1.8.0"]]}
|
|
|
|
|
:master {:dependencies [[org.clojure/clojure "1.10.0-master-SNAPSHOT"]]}
|
2012-04-03 12:46:39 +00:00
|
|
|
:dev {:resource-paths ["test/resources"]
|
2018-12-02 18:24:29 +00:00
|
|
|
:dependencies [[clj-time "0.15.1" :exclusions [org.clojure/clojure]]
|
|
|
|
|
[cheshire "5.8.1" :exclusions [org.clojure/clojure]]
|
|
|
|
|
[org.clojure/data.json "0.2.6" :exclusions [org.clojure/clojure]]
|
|
|
|
|
[org.clojure/tools.cli "0.4.1" :exclusions [org.clojure/clojure]]
|
|
|
|
|
[org.clojure/core.cache "0.7.1" :exclusions [org.clojure/clojure]]
|
|
|
|
|
[ring/ring-core "1.7.1" :exclusions [org.clojure/clojure]]
|
|
|
|
|
[com.novemberain/validateur "2.6.0" :exclusions [org.clojure/clojure]]
|
|
|
|
|
[ch.qos.logback/logback-classic "1.2.3" :exclusions [org.slf4j/slf4j-api]]
|
|
|
|
|
[ragtime/core "0.7.2" :exclusions [org.clojure/clojure]]]
|
|
|
|
|
:plugins [[lein-codox "0.10.5"]]
|
2015-12-19 23:09:50 +00:00
|
|
|
:codox {:source-paths ["src/clojure"]
|
|
|
|
|
:namespaces [#"^monger\.(?!internal)"]}}
|
2012-08-23 05:27:12 +00:00
|
|
|
;; only clj-time/JodaTime available, used to test monger.joda-time w/o clojure.data.json
|
|
|
|
|
:dev2 {:resource-paths ["test/resources"]
|
2018-12-02 18:24:29 +00:00
|
|
|
:dependencies [[clj-time "0.15.1" :exclusions [org.clojure/clojure]]]}}
|
|
|
|
|
:aliases {"all" ["with-profile" "dev:dev,1.8:dev,master"]}
|
|
|
|
|
:repositories {"sonatype" {:url "https://oss.sonatype.org/content/repositories/releases"
|
2012-05-14 12:10:55 +00:00
|
|
|
:snapshots false
|
2012-04-26 17:14:48 +00:00
|
|
|
:releases {:checksum :fail :update :always}}
|
2018-12-02 18:24:29 +00:00
|
|
|
"sonatype-snapshots" {:url "https://oss.sonatype.org/content/repositories/snapshots"
|
2012-04-26 17:14:48 +00:00
|
|
|
:snapshots true
|
2014-02-24 13:17:25 +00:00
|
|
|
:releases {:checksum :fail :update :always}}})
|