-
Notifications
You must be signed in to change notification settings - Fork 51
/
project.clj
30 lines (29 loc) · 1.87 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
(defproject hikari-cp "3.1.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.11.3" :scope "provided"]
[org.tobereplaced/lettercase "1.0.0"]
[com.zaxxer/HikariCP "5.1.0"]]
:deploy-repositories [["clojars" {:sign-releases false :url "https://clojars.org/repo"}]]
:profiles {:dev {:dependencies [[expectations "2.1.10"]
[org.slf4j/slf4j-nop "2.0.13"]
[org.clojure/java.jdbc "0.7.12"]
[mysql/mysql-connector-java "8.0.33"]
[org.neo4j.driver/neo4j-java-driver "5.20.0"]
[org.postgresql/postgresql "42.7.3"]
[io.dropwizard.metrics/metrics-core "4.2.25"]
[io.dropwizard.metrics/metrics-healthchecks "4.2.25"]
[io.prometheus/simpleclient "0.16.0"]
; The Oracle driver is only accessible from maven.oracle.com
; which requires a userId and password
; https://blogs.oracle.com/dev2dev/entry/how_to_get_oracle_jdbc
; Or manual download with account
; http://www.oracle.com/technetwork/database/features/jdbc/default-2280471.html
#_[com.oracle.jdbc/ojdbc7 "12.1.0.2"]]
:plugins [[lein-ancient "0.7.0"]
[lein-expectations "0.0.8"]]}}
:aliases {"test" "expectations"})