-
-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathproject.clj
18 lines (17 loc) · 812 Bytes
/
project.clj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
(defproject cc.qbits/hayt "4.1.0"
:description "CQL Query Generation"
:url "https://github.com/mpenet/hayt"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:dependencies [[cc.qbits/commons "0.5.1"]
[org.apache.commons/commons-lang3 "3.4"]
[org.clojure/clojure "1.9.0-alpha14"]]
:profiles {:dev {:dependencies [[clj-time "0.8.0"]
[codox "0.8.10"]]}}
:codox {:source-uri "https://github.com/mpenet/hayt/blob/master/{filepath}#L{line}"
:metadata {:doc/format :markdown}}
:source-paths ["src/clj"]
:java-source-paths ["src/java"]
:jvm-opts ^:replace ["-server"]
:javac-options ["-source" "1.7" "-target" "1.7" "-g"]
:global-vars {*warn-on-reflection* true})