2014-02-09 12:03:53 +00:00
|
|
|
(defproject com.taoensso/timbre "3.0.1"
|
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}
|
|
|
|
:dependencies
|
2014-02-23 12:46:49 +00:00
|
|
|
[[org.clojure/clojure "1.4.0"]
|
|
|
|
[io.aviso/pretty "0.1.8"]
|
|
|
|
[com.taoensso/encore "0.8.0"]]
|
2014-02-23 12:34:37 +00:00
|
|
|
|
|
|
|
:test-paths ["test" "src"]
|
|
|
|
:profiles
|
|
|
|
{:build {:hooks ^:replace []} ; Workaround to avoid :dev hooks during deploy
|
|
|
|
:1.5 {:dependencies [[org.clojure/clojure "1.5.1"]]}
|
|
|
|
:1.6 {:dependencies [[org.clojure/clojure "1.6.0-beta1"]]}
|
|
|
|
:test {:dependencies [[expectations "1.4.56"]
|
|
|
|
[reiddraper/simple-check "0.5.6"]
|
|
|
|
[org.xerial.snappy/snappy-java "1.1.1-M1"]
|
|
|
|
[org.clojure/data.fressian "0.2.0"]]
|
|
|
|
:plugins [[lein-expectations "0.0.8"]
|
|
|
|
[lein-autoexpect "1.2.2"]]}
|
|
|
|
:dev
|
|
|
|
[:1.6 :test
|
|
|
|
{:jvm-opts ^:replace ["-server"]
|
|
|
|
:hooks []
|
|
|
|
:dependencies [[com.draines/postal "1.11.1"]
|
|
|
|
[org.clojure/tools.logging "0.2.6"]
|
|
|
|
[com.taoensso/nippy "2.5.2"]
|
|
|
|
[com.taoensso/carmine "2.4.6"]]
|
|
|
|
:plugins []}]}
|
|
|
|
|
|
|
|
:plugins [[lein-ancient "0.5.4"]
|
|
|
|
[codox "0.6.7"]]
|
|
|
|
|
|
|
|
;; :codox {:sources ["target/classes"]} ; For use with cljx
|
|
|
|
:aliases
|
|
|
|
{"test-all" ["with-profile" "+test:+1.5,+test:+1.6,+test" "expectations"]
|
|
|
|
"test-auto" ["with-profile" "+test" "autoexpect"]
|
|
|
|
"start-dev" ["with-profile" "+dev" "repl" ":headless"]
|
|
|
|
"codox" ["with-profile" "+test" "doc"]
|
|
|
|
"deploy-lib" ["with-profile" "+dev,+build" "do" "deploy" "clojars," "install"]}
|
|
|
|
|
2013-06-25 08:12:17 +00:00
|
|
|
:repositories
|
|
|
|
{"sonatype"
|
|
|
|
{:url "http://oss.sonatype.org/content/repositories/releases"
|
|
|
|
:snapshots false
|
|
|
|
:releases {:checksum :fail}}
|
|
|
|
"sonatype-snapshots"
|
|
|
|
{:url "http://oss.sonatype.org/content/repositories/snapshots"
|
|
|
|
:snapshots true
|
2013-07-09 06:29:51 +00:00
|
|
|
:releases {:checksum :fail :update :always}}})
|