2015-09-14 10:03:15 +00:00
|
|
|
(defproject com.taoensso/nippy "2.9.1"
|
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
|
2015-03-20 08:17:15 +00:00
|
|
|
*assert* true
|
|
|
|
|
*unchecked-math* :warn-on-boxed}
|
2014-07-05 07:43:24 +00:00
|
|
|
|
2014-02-23 11:45:53 +00:00
|
|
|
:dependencies
|
|
|
|
|
[[org.clojure/clojure "1.4.0"]
|
2015-04-29 04:44:19 +00:00
|
|
|
[org.clojure/tools.reader "0.9.2"]
|
2015-08-07 17:13:59 +00:00
|
|
|
[com.taoensso/encore "1.38.0"] ; 2.x needs Clojure 1.5+
|
|
|
|
|
[org.iq80.snappy/snappy "0.4"]
|
2014-04-05 07:20:38 +00:00
|
|
|
[org.tukaani/xz "1.5"]
|
2014-11-27 08:32:04 +00:00
|
|
|
[net.jpountz.lz4/lz4 "1.3"]]
|
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"]]}
|
2015-06-02 05:45:57 +00:00
|
|
|
:1.7 {:dependencies [[org.clojure/clojure "1.7.0-RC1"]]}
|
2014-02-23 11:45:53 +00:00
|
|
|
:test {:jvm-opts ["-Xms1024m" "-Xmx2048m"]
|
2015-03-20 08:17:15 +00:00
|
|
|
:dependencies [[expectations "2.1.1"]
|
2015-08-07 17:13:59 +00:00
|
|
|
[org.clojure/test.check "0.8.2"]
|
2015-03-20 08:17:15 +00:00
|
|
|
;; [com.cemerick/double-check "0.6.1"]
|
2015-08-07 17:13:59 +00:00
|
|
|
[org.clojure/data.fressian "0.2.1"]
|
2015-03-20 08:17:15 +00:00
|
|
|
[org.xerial.snappy/snappy-java "1.1.1.7"]]}
|
|
|
|
|
:dev [:1.7 :test
|
2014-07-05 07:43:24 +00:00
|
|
|
{:plugins
|
|
|
|
|
[[lein-pprint "1.1.1"]
|
2015-04-19 03:48:01 +00:00
|
|
|
[lein-ancient "0.6.7"]
|
2014-07-05 07:43:24 +00:00
|
|
|
[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
|
2015-03-20 08:17:15 +00:00
|
|
|
{"test-all" ["with-profile" "default:+1.5:+1.6:+1.7" "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
|
|
|
|
2014-09-02 15:01:16 +00:00
|
|
|
:repositories {"sonatype-oss-public"
|
|
|
|
|
"https://oss.sonatype.org/content/groups/public/"})
|