-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproject.clj
More file actions
26 lines (21 loc) · 898 Bytes
/
project.clj
File metadata and controls
26 lines (21 loc) · 898 Bytes
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
(defproject co.zensight/cidekick "1.0.1-SNAPSHOT"
:description "CI Sidekick: Not a cider nrepl plugin"
:deploy-repositories [["releases" :clojars]
["snapshots" :clojars]]
:url "https://github.com/Zensight/cidekick"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:eval-in-leiningen true
:dependencies [
;; duh
[org.clojure/clojure "1.9.0"]
;;joda time wrapper
[clj-time "0.14.2"]
;; json
[org.clojure/data.json "0.2.5"]
;; database access
[org.clojure/java.jdbc "0.3.5"]
;; postgresql driver for JDBC
[org.postgresql/postgresql "42.2.1"]
;; database connection pool
[com.zaxxer/HikariCP "2.7.2"]])