2013-06-07 20:45:33 +07:00
|
|
|
(defproject com.taoensso/timbre "2.1.2"
|
2012-11-04 23:43:55 +07:00
|
|
|
:description "Clojure logging & profiling library"
|
2012-05-28 15:13:11 +07:00
|
|
|
:url "https://github.com/ptaoussanis/timbre"
|
2013-06-01 19:36:31 +07:00
|
|
|
:license {:name "Eclipse Public License"
|
|
|
|
:url "http://www.eclipse.org/legal/epl-v10.html"}
|
2013-06-01 19:31:14 +07:00
|
|
|
:dependencies [[org.clojure/clojure "1.4.0"]
|
2013-06-15 22:30:20 +07:00
|
|
|
[org.clojure/tools.macro "0.1.2"]
|
2012-12-28 13:59:17 +07:00
|
|
|
[clj-stacktrace "0.2.5"]]
|
2013-06-01 19:31:14 +07:00
|
|
|
:profiles {:1.4 {:dependencies [[org.clojure/clojure "1.4.0"]]}
|
2013-05-18 16:54:29 +07:00
|
|
|
:1.5 {:dependencies [[org.clojure/clojure "1.5.1"]]}
|
2012-07-17 22:25:03 +07:00
|
|
|
:dev {:dependencies []}
|
|
|
|
:test {:dependencies []}}
|
2013-06-01 19:31:14 +07:00
|
|
|
:aliases {"test-all" ["with-profile" "test,1.4:test,1.5" "test"]}
|
2013-06-01 19:36:31 +07:00
|
|
|
:plugins [[codox "0.6.4"]]
|
2012-05-28 15:13:11 +07:00
|
|
|
:min-lein-version "2.0.0"
|
2013-06-05 20:16:52 +07:00
|
|
|
:warn-on-reflection true)
|