-
Notifications
You must be signed in to change notification settings - Fork 0
/
project.clj
29 lines (29 loc) · 1.11 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
(defproject com.ozjongwon/pgxjdbc "0.1.0-SNAPSHOT"
:author "Jong-won Choi"
:description "Clojure JDBC type conversion extension for PostgreSQL"
:url "https://github.com/ozjongwon/pgxjdbc/"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"
:distribution :repo
:comments "Same as Clojure"}
:min-lein-version "2.3.3"
:global-vars {*warn-on-reflection* true
*assert* true}
:dependencies [[org.clojure/clojure "1.6.0"]
[org.clojure/java.jdbc "0.3.6"]
[org.postgresql/postgresql "9.3-1102-jdbc41"]
[c3p0/c3p0 "0.9.1.2"]
[cheshire "5.3.1"]]
:profiles
{:dev {:plugins [[lein-ancient "0.5.5"]
[lein-pprint "1.1.1"]
[lein-swank "1.4.5"]]}}
:jvm-opts ["-Xmx512m"
"-XX:MaxPermSize=256m"
"-XX:+UseParNewGC"
"-XX:+UseConcMarkSweepGC"
"-Dfile.encoding=UTF-8"
"-Dsun.jnu.encoding=UTF-8"
"-Dsun.io.useCanonCaches=false"]
:encoding "utf-8"
)