forked from taoensso/tower
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproject.clj
More file actions
15 lines (15 loc) · 827 Bytes
/
project.clj
File metadata and controls
15 lines (15 loc) · 827 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
(defproject com.taoensso/tower "1.2.0"
:description "Clojure internationalization & translation library"
:url "https://github.com/ptaoussanis/tower"
:license {:name "Eclipse Public License"}
:dependencies [[org.clojure/clojure "1.3.0"]
[org.clojure/tools.macro "0.1.1"]
[com.taoensso/timbre "1.2.0"]]
:profiles {:1.3 {:dependencies [[org.clojure/clojure "1.3.0"]]}
:1.4 {:dependencies [[org.clojure/clojure "1.4.0"]]}
:1.5 {:dependencies [[org.clojure/clojure "1.5.0-alpha3"]]}
:dev {:dependencies [[ring/ring-core "1.1.0"]]}
:test {:dependencies [[ring/ring-core "1.1.0"]]}}
:aliases {"test-all" ["with-profile" "test,1.3:test,1.4:test,1.5" "test"]}
:min-lein-version "2.0.0"
:warn-on-reflection true)