-
Notifications
You must be signed in to change notification settings - Fork 56
/
Copy pathproject.clj
21 lines (21 loc) · 885 Bytes
/
project.clj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
(defproject lobos "1.0.0-beta3"
:description
"A library to create and manipulate SQL database schemas."
:url "http://budu.github.com/lobos/"
:license {:name "Eclipse Public License"}
:dependencies [[org.clojure/clojure "1.4.0"]
[org.clojure/java.jdbc "0.3.3"]
[org.clojure/tools.macro "0.1.2"]]
:profiles {:1.3 {:dependencies [[org.clojure/clojure "1.3.0"]]}
:1.5 {:dependencies [[org.clojure/clojure "1.5.0"]]}
:dev
{:dependencies
[[lein-clojars "0.7.0"]
[lein-marginalia "0.6.1"]
[lein-multi "1.1.0"]
[cljss "0.1.1"]
[hiccup "0.3.1"]
[com.h2database/h2 "1.3.160"]]}}
:aliases {"all" ["with-profile" "dev:dev,1.3"]}
:jar-exclusions [#"www.clj" #"config.clj" #"migrations.clj"]
:min-lein-version "2.0.0")