forked from tomekw/hikari-cp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
project.clj
19 lines (19 loc) · 1 KB
/
project.clj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
(defproject hikari-cp "1.4.0"
:description "A Clojure wrapper to HikariCP JDBC connection pool"
:url "https://github.com/tomekw/hikari-cp"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:scm {:name "git"
:url "https://github.com/tomekw/hikari-cp"}
:dependencies [[org.clojure/clojure "1.7.0"]
[org.tobereplaced/lettercase "1.0.0"]
[com.zaxxer/HikariCP "2.4.1"]
[prismatic/schema "1.0.0"]]
:profiles {:dev {
:dependencies [[expectations "2.1.3"]
[org.slf4j/slf4j-nop "1.7.12"]
[org.clojure/java.jdbc "0.4.1"]
[mysql/mysql-connector-java "5.1.36"]
[org.postgresql/postgresql "9.3-1102-jdbc41"]]
:plugins [[lein-expectations "0.0.7"]]}}
:aliases {"test" "expectations"})