2016-06-07 23:59:13 +00:00
|
|
|
(defproject honeysql "0.7.1-SNAPSHOT"
|
2012-07-13 13:57:47 +00:00
|
|
|
:description "SQL as Clojure data structures"
|
2012-07-13 01:50:13 +00:00
|
|
|
:license {:name "Eclipse Public License"
|
|
|
|
|
:url "http://www.eclipse.org/legal/epl-v10.html"}
|
2015-03-12 21:34:28 +00:00
|
|
|
:url "https://github.com/jkk/honeysql"
|
2015-03-12 21:34:33 +00:00
|
|
|
:scm {:name "git"
|
|
|
|
|
:url "https://github.com/jkk/honeysql"}
|
2015-06-13 18:30:21 +00:00
|
|
|
:dependencies [[org.clojure/clojure "1.8.0"]]
|
|
|
|
|
:profiles {:dev {:dependencies [[org.clojure/clojure "1.8.0"]
|
2016-07-08 22:57:51 +00:00
|
|
|
[org.clojure/clojurescript "1.9.89"]
|
|
|
|
|
[cljsbuild "1.1.3"]]
|
2015-06-13 18:30:21 +00:00
|
|
|
:cljsbuild {:builds [{:source-paths ["src" "test"]}]}
|
2016-07-08 22:57:51 +00:00
|
|
|
:plugins [[lein-cljsbuild "1.1.3"]]}})
|