forked from krisajenkins/yesql
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproject.clj
More file actions
20 lines (20 loc) · 1.06 KB
/
project.clj
File metadata and controls
20 lines (20 loc) · 1.06 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
(defproject yesql "0.4.1"
:description "A Clojure library for using SQL"
:url "https://github.com/krisajenkins/yesql"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:dependencies [[org.clojure/clojure "1.6.0"]
[org.clojure/java.jdbc "0.3.6"]
[instaparse "1.3.6"]]
:scm {:name "git"
:url "https://github.com/krisajenkins/yesql"}
:profiles {:dev {:dependencies [[org.apache.derby/derby "10.11.1.1"]
[expectations "2.1.1"]]
:plugins [[lein-autoexpect "1.2.2"]
[lein-expectations "0.0.7"]]}
:1.5 {:dependencies [[org.clojure/clojure "1.5.1"]]}
:1.6 {:dependencies [[org.clojure/clojure "1.6.0"]]}
:1.7a {:dependencies [[org.clojure/clojure "1.7.0-alpha6"]]}
:1.7b {:dependencies [[org.clojure/clojure "1.7.0-beta1"]]}}
:aliases {"test-all" ["with-profile" "+1.5:+1.6:+1.7a:+1.7b" "expectations"]
"test-ancient" ["expectations"]})