forked from congomongo/congomongo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
project.clj
executable file
·23 lines (22 loc) · 1.14 KB
/
project.clj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
;; common dependencies:
(def deps '[[org.clojure/core.incubator "0.1.0"]
[org.clojure/data.json "0.1.3"]
[org.mongodb/mongo-java-driver "2.7.3"]])
;; project definition for multi-version testing:
(defproject congomongo
"0.1.11-SNAPSHOT"
:description "clojure-friendly api for MongoDB"
:url "https://github.com/aboekhoff/congomongo"
:mailing-list {:name "congomongo mailing list"
:archive "https://groups.google.com/forum/?fromgroups#!forum/congomongo-dev"
:post "[email protected]"}
:license {:name "MIT License"
:url "http://www.opensource.org/licenses/mit-license.php"
:distribution :repo}
:dev-dependencies [[lein-multi "1.1.0"]
[swank-clojure "1.4.2"]]
:repositories [["sonatype-snapshots" "https://oss.sonatype.org/content/repositories/snapshots/"]]
:dependencies ~(conj deps '[org.clojure/clojure "1.3.0"])
:multi-deps {"1.2" ~(conj deps '[org.clojure/clojure "1.2.1"])
"1.4" ~(conj deps '[org.clojure/clojure "1.4.0"])
"1.5S" ~(conj deps '[org.clojure/clojure "1.5.0-master-SNAPSHOT"])})