forked from korma/Korma
-
Notifications
You must be signed in to change notification settings - Fork 0
/
project.clj
49 lines (47 loc) · 2.56 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
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
(defproject korma "0.3.0-RC6"
:description "Tasty SQL for Clojure"
:url "http://github.com/korma/Korma"
:mailing-list {:name "Korma Google Group"
:subscribe "https://groups.google.com/group/sqlkorma"}
:codox {:exclude [korma.sql.engine
korma.sql.fns
korma.sql.utils]
:src-dir-uri "https://github.com/korma/Korma/blob/master"
:src-linenum-anchor-prefix "L"}
;;Lein2 - the way of the future
:profiles {:user {:dependencies [[org.clojure/clojure "1.5.1"]
[c3p0/c3p0 "0.9.1.2"]
[org.clojure/java.jdbc "0.2.3"]]}
:dev {:dependencies [[com.h2database/h2 "1.3.164"]
[gui-diff "0.4.0"]
[postgresql "9.0-801.jdbc4"]
[slamhound "1.3.1"]
[mysql/mysql-connector-java "5.1.22"]
[criterium "0.3.1"]]
:plugins [[codox "0.6.4"]
[jonase/eastwood "0.0.2"]
[lein-localrepo "0.4.1"]]}
:1.3.0 {:dependencies [[org.clojure/clojure "1.3.0"]
[org.clojure/java.jdbc "0.2.3"]
[mysql/mysql-connector-java "5.1.22"]
[com.h2database/h2 "1.3.164"]
[criterium "0.3.1"]]}
:1.4.0 {:dependencies [[org.clojure/clojure "1.4.0"]
[org.clojure/java.jdbc "0.2.3"]
[mysql/mysql-connector-java "5.1.22"]
[com.h2database/h2 "1.3.164"]
[criterium "0.3.1"]]}
:1.5.0 {:dependencies [[org.clojure/clojure "1.5.1"]
[org.clojure/java.jdbc "0.2.3"]
[mysql/mysql-connector-java "5.1.22"]
[com.h2database/h2 "1.3.164"]
[criterium "0.3.1"]]}}
:aliases {"run-tests" ["with-profile" "1.3.0:1.4.0:1.5.0" "test"]
"slamhound" ["run" "-m" "slam.hound"]}
:jvm-opts ["-Dline.separator=\n"]
;; Lein1 - will be removed at some point
:dependencies [[org.clojure/clojure "1.5.1"]
[c3p0/c3p0 "0.9.1.2"]
[org.clojure/java.jdbc "0.2.3"]]
:dev-dependencies [[com.h2database/h2 "1.3.164"]
[postgresql "9.0-801.jdbc4"]])