forked from krisajenkins/yesql
-
Notifications
You must be signed in to change notification settings - Fork 1
/
project.clj
24 lines (24 loc) · 1.32 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
(defproject org.clojars.mpenttila/yesql "0.6.0"
:description "A Clojure library for using SQL"
:url "https://github.com/mpenttila/yesql"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:dependencies [[org.clojure/clojure "1.8.0"]
[org.clojure/java.jdbc "0.5.8"]
[instaparse "1.4.1" :exclusions [org.clojure/clojure]]]
:pedantic? :abort
:scm {:name "git"
:url "https://github.com/krisajenkins/yesql"}
:profiles {:dev {:dependencies [[expectations "2.1.3" :exclusions [org.clojure/clojure]]
[org.apache.derby/derby "10.12.1.1"]]
:plugins [[lein-autoexpect "1.4.0"]
[lein-expectations "0.0.8" :exclusions [org.clojure/clojure]]]}
:1.5 {:dependencies [[org.clojure/clojure "1.5.1"]]}
:1.6 {:dependencies [[org.clojure/clojure "1.6.0"]]}
:1.7 {:dependencies [[org.clojure/clojure "1.7.0"]]}
:1.8 {:dependencies [[org.clojure/clojure "1.8.0"]]}
:1.9 {:dependencies [[org.clojure/clojure "1.9.0-alpha1"]]}}
:aliases {"test-all" ["with-profile" "+1.5:+1.6:+1.7:+1.8:+1.9" "do"
["clean"]
["expectations"]]
"test-ancient" ["expectations"]})