-
Notifications
You must be signed in to change notification settings - Fork 0
/
project.clj
28 lines (22 loc) · 940 Bytes
/
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
(defproject clanhr/postgres-gateway "1.12.1"
:description "ClanHR postgres-gateway"
:url "https://github.com/clanhr/postgres-gateway"
:license {:name "The MIT License"
:url "file://LICENSE"
:distribution :repo
:comments "Copyright Selfcare All Rights Reserved."}
:min-lein-version "2.5.0"
:dependencies [[environ "1.1.0"]
[org.clojure/clojure "1.8.0"]
[org.clojure/java.jdbc "0.7.0-alpha1"]
[alaisi/postgres.async "0.8.0"]
[cheshire "5.6.3"]
[com.stuartsierra/component "0.3.1"]
[org.slf4j/slf4j-nop "1.7.21"]
[clanhr/result "0.16.0"]
[clanhr/analytics "1.11.0"]
[postgresql "9.3-1102.jdbc41"]]
:plugins [[lein-environ "1.0.2"]
[lein-ancient "0.6.5"]]
:source-paths ["src"]
:test-paths ["test"])