2014-08-14 11:47:33 +00:00
|
|
|
(defproject com.taoensso/timbre "3.3.0"
|
2014-02-23 12:34:37 +00:00
|
|
|
:author "Peter Taoussanis <https://www.taoensso.com>"
|
2012-11-04 16:43:55 +00:00
|
|
|
:description "Clojure logging & profiling library"
|
2012-05-28 08:13:11 +00:00
|
|
|
:url "https://github.com/ptaoussanis/timbre"
|
2013-06-01 12:36:31 +00:00
|
|
|
:license {:name "Eclipse Public License"
|
2014-02-23 12:34:37 +00:00
|
|
|
:url "http://www.eclipse.org/legal/epl-v10.html"
|
|
|
|
:distribution :repo
|
|
|
|
:comments "Same as Clojure"}
|
|
|
|
:min-lein-version "2.3.3"
|
|
|
|
:global-vars {*warn-on-reflection* true
|
|
|
|
*assert* true}
|
2014-07-07 08:06:28 +00:00
|
|
|
|
2014-02-23 12:34:37 +00:00
|
|
|
:dependencies
|
2014-02-23 12:46:49 +00:00
|
|
|
[[org.clojure/clojure "1.4.0"]
|
2014-09-02 10:49:51 +00:00
|
|
|
[com.taoensso/encore "1.7.3"]
|
2014-07-07 08:07:48 +00:00
|
|
|
[io.aviso/pretty "0.1.12"]]
|
2014-02-23 12:34:37 +00:00
|
|
|
|
|
|
|
:profiles
|
2014-02-26 09:45:54 +00:00
|
|
|
{;; :default [:base :system :user :provided :dev]
|
2014-07-07 08:06:28 +00:00
|
|
|
:server-jvm {:jvm-opts ^:replace ["-server"]}
|
2014-02-23 12:34:37 +00:00
|
|
|
:1.5 {:dependencies [[org.clojure/clojure "1.5.1"]]}
|
2014-03-30 13:57:26 +00:00
|
|
|
:1.6 {:dependencies [[org.clojure/clojure "1.6.0"]]}
|
2014-09-02 10:49:51 +00:00
|
|
|
:test {:dependencies [[expectations "2.0.9"]
|
|
|
|
[org.clojure/test.check "0.5.9"]
|
|
|
|
[com.taoensso/nippy "2.7.0-RC1"]
|
|
|
|
[com.taoensso/carmine "2.7.0"]
|
2014-07-07 08:06:28 +00:00
|
|
|
[com.draines/postal "1.11.1"]
|
2014-07-07 08:07:48 +00:00
|
|
|
[org.clojure/tools.logging "0.3.0"]]
|
2014-02-23 12:34:37 +00:00
|
|
|
:plugins [[lein-expectations "0.0.8"]
|
|
|
|
[lein-autoexpect "1.2.2"]]}
|
|
|
|
:dev
|
|
|
|
[:1.6 :test
|
2014-06-01 14:18:48 +00:00
|
|
|
{:dependencies [[irclj "0.5.0-alpha4"]]
|
2014-02-28 13:52:37 +00:00
|
|
|
:plugins [[lein-ancient "0.5.4"]
|
2014-07-07 08:06:28 +00:00
|
|
|
[codox "0.8.10"]]}]}
|
|
|
|
|
|
|
|
:test-paths ["test" "src"]
|
2014-02-23 12:34:37 +00:00
|
|
|
|
|
|
|
:aliases
|
2014-02-26 09:45:54 +00:00
|
|
|
{"test-all" ["with-profile" "default:+1.5:+1.6" "expectations"]
|
2014-02-26 09:46:49 +00:00
|
|
|
;; "test-all" ["with-profile" "default:+1.6" "expectations"]
|
2014-02-23 12:34:37 +00:00
|
|
|
"test-auto" ["with-profile" "+test" "autoexpect"]
|
2014-02-26 09:45:54 +00:00
|
|
|
"deploy-lib" ["do" "deploy" "clojars," "install"]
|
2014-07-07 08:06:28 +00:00
|
|
|
"start-dev" ["with-profile" "+server-jvm" "repl" ":headless"]}
|
2014-02-23 12:34:37 +00:00
|
|
|
|
2014-09-02 15:01:35 +00:00
|
|
|
:repositories {"sonatype-oss-public"
|
|
|
|
"https://oss.sonatype.org/content/groups/public/"})
|