2014-04-29 15:55:21 +00:00
|
|
|
(defproject com.taoensso/nippy "2.6.3"
|
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}
|
2014-07-05 07:43:24 +00:00
|
|
|
|
2014-02-23 11:45:53 +00:00
|
|
|
:dependencies
|
|
|
|
|
[[org.clojure/clojure "1.4.0"]
|
2014-07-04 09:42:28 +00:00
|
|
|
[org.clojure/tools.reader "0.8.5"]
|
|
|
|
|
[com.taoensso/encore "1.7.0"]
|
2014-02-23 11:45:53 +00:00
|
|
|
[org.iq80.snappy/snappy "0.3"]
|
2014-04-05 07:20:38 +00:00
|
|
|
[org.tukaani/xz "1.5"]
|
|
|
|
|
[net.jpountz.lz4/lz4 "1.2.0"]]
|
2014-02-23 11:45:53 +00:00
|
|
|
|
|
|
|
|
:profiles
|
2014-02-26 09:35:04 +00:00
|
|
|
{;; :default [:base :system :user :provided :dev]
|
2014-07-05 07:43:24 +00:00
|
|
|
:server-jvm {:jvm-opts ^:replace ["-server" "-Xms1024m" "-Xmx2048m"]}
|
2014-02-23 11:45:53 +00:00
|
|
|
:1.5 {:dependencies [[org.clojure/clojure "1.5.1"]]}
|
2014-03-30 12:28:51 +00:00
|
|
|
:1.6 {:dependencies [[org.clojure/clojure "1.6.0"]]}
|
2014-02-23 11:45:53 +00:00
|
|
|
:test {:jvm-opts ["-Xms1024m" "-Xmx2048m"]
|
2014-07-05 07:43:24 +00:00
|
|
|
:dependencies [[expectations "2.0.7"]
|
2014-07-04 09:42:28 +00:00
|
|
|
[org.clojure/test.check "0.5.8"]
|
2014-07-05 07:43:24 +00:00
|
|
|
;; [com.cemerick/double-check "0.5.7"]
|
2014-02-26 09:35:04 +00:00
|
|
|
[org.clojure/data.fressian "0.2.0"]
|
2014-07-05 07:43:24 +00:00
|
|
|
[org.xerial.snappy/snappy-java "1.1.1"]]}
|
|
|
|
|
:dev [:1.6 :test
|
|
|
|
|
{:plugins
|
|
|
|
|
[[lein-pprint "1.1.1"]
|
|
|
|
|
[lein-ancient "0.5.5"]
|
|
|
|
|
[lein-expectations "0.0.8"]
|
|
|
|
|
[lein-autoexpect "1.2.2"]
|
|
|
|
|
[codox "0.8.10"]]}]}
|
|
|
|
|
|
|
|
|
|
:test-paths ["test" "src"]
|
2014-02-23 11:45:53 +00:00
|
|
|
|
|
|
|
|
:aliases
|
2014-02-26 09:35:04 +00:00
|
|
|
{"test-all" ["with-profile" "default:+1.5:+1.6" "expectations"]
|
2014-02-26 09:37:39 +00:00
|
|
|
;; "test-all" ["with-profile" "default:+1.6" "expectations"]
|
2014-02-23 11:45:53 +00:00
|
|
|
"test-auto" ["with-profile" "+test" "autoexpect"]
|
2014-02-26 09:35:04 +00:00
|
|
|
"deploy-lib" ["do" "deploy" "clojars," "install"]
|
2014-07-05 07:43:24 +00:00
|
|
|
"start-dev" ["with-profile" "+server-jvm" "repl" ":headless"]}
|
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}}})
|