2014-02-23 18:42:25 +00:00
|
|
|
(defproject com.taoensso/nippy "2.6.0-beta1"
|
2014-02-23 11:45:53 +00:00
|
|
|
:author "Peter Taoussanis <https://www.taoensso.com>"
|
2012-11-04 16:31:57 +00:00
|
|
|
:description "Clojure serialization library"
|
2012-07-06 12:53:02 +00:00
|
|
|
:url "https://github.com/ptaoussanis/nippy"
|
2013-06-03 06:52:45 +00:00
|
|
|
:license {:name "Eclipse Public License"
|
2014-02-23 11:45:53 +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
|
|
|
|
|
[[org.clojure/clojure "1.4.0"]
|
|
|
|
|
[org.clojure/tools.reader "0.8.3"]
|
|
|
|
|
[org.iq80.snappy/snappy "0.3"]
|
|
|
|
|
[org.tukaani/xz "1.4"]
|
|
|
|
|
[com.taoensso/encore "0.8.0"]]
|
|
|
|
|
|
|
|
|
|
: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 {:jvm-opts ["-Xms1024m" "-Xmx2048m"]
|
|
|
|
|
: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" "-Xms1024m" "-Xmx2048m"]
|
|
|
|
|
:hooks []
|
|
|
|
|
:dependencies []
|
|
|
|
|
: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"]
|
2014-02-23 11:52:50 +00:00
|
|
|
"deploy-lib" ["with-profile" "+dev,+build" "do" "deploy" "clojars," "install"]}
|
2014-02-23 11:45:53 +00:00
|
|
|
|
2013-06-25 07:49:03 +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-22 16:44:37 +00:00
|
|
|
:releases {:checksum :fail :update :always}}})
|