2019-01-06 13:17:15 +00:00
|
|
|
(defproject com.taoensso/nippy "2.15.0-alpha9"
|
2014-02-23 11:45:53 +00:00
|
|
|
:author "Peter Taoussanis <https://www.taoensso.com>"
|
2016-01-23 04:10:17 +00:00
|
|
|
:description "High-performance serialization library for Clojure"
|
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
|
2016-06-23 13:10:34 +00:00
|
|
|
;; *unchecked-math* :warn-on-boxed
|
2015-12-01 06:00:53 +00:00
|
|
|
}
|
2014-07-05 07:43:24 +00:00
|
|
|
|
2014-02-23 11:45:53 +00:00
|
|
|
:dependencies
|
2015-09-28 07:28:47 +00:00
|
|
|
[[org.clojure/clojure "1.5.1"]
|
2018-10-14 10:16:53 +00:00
|
|
|
[org.clojure/tools.reader "1.3.2"]
|
2019-02-16 09:36:19 +00:00
|
|
|
[com.taoensso/encore "2.106.0"]
|
2015-08-07 17:13:59 +00:00
|
|
|
[org.iq80.snappy/snappy "0.4"]
|
2018-09-08 12:57:40 +00:00
|
|
|
[org.tukaani/xz "1.8"]
|
2019-01-19 09:44:22 +00:00
|
|
|
[org.lz4/lz4-java "1.5.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"]]}
|
2015-09-15 17:49:00 +00:00
|
|
|
:1.7 {:dependencies [[org.clojure/clojure "1.7.0"]]}
|
2016-01-23 04:59:48 +00:00
|
|
|
:1.8 {:dependencies [[org.clojure/clojure "1.8.0"]]}
|
2017-12-21 08:57:24 +00:00
|
|
|
:1.9 {:dependencies [[org.clojure/clojure "1.9.0"]]}
|
2018-10-14 10:16:53 +00:00
|
|
|
:1.10 {:dependencies [[org.clojure/clojure "1.10.0"]]}
|
2014-02-23 11:45:53 +00:00
|
|
|
:test {:jvm-opts ["-Xms1024m" "-Xmx2048m"]
|
2015-12-01 06:07:38 +00:00
|
|
|
:dependencies [[org.clojure/test.check "0.9.0"]
|
2015-08-07 17:13:59 +00:00
|
|
|
[org.clojure/data.fressian "0.2.1"]
|
2018-09-08 12:57:40 +00:00
|
|
|
[org.xerial.snappy/snappy-java "1.1.7.2"]]}
|
2019-02-16 09:36:19 +00:00
|
|
|
:dev [:1.10 :test :server-jvm
|
2015-09-28 07:28:47 +00:00
|
|
|
{:plugins
|
2017-12-21 08:57:24 +00:00
|
|
|
[[lein-pprint "1.2.0"]
|
|
|
|
|
[lein-ancient "0.6.15"]
|
2019-02-16 09:36:19 +00:00
|
|
|
[lein-codox "0.10.6"]]}]}
|
2014-07-05 07:43:24 +00:00
|
|
|
|
|
|
|
|
:test-paths ["test" "src"]
|
2014-02-23 11:45:53 +00:00
|
|
|
|
2015-12-01 06:00:53 +00:00
|
|
|
:codox
|
2015-12-13 04:25:38 +00:00
|
|
|
{:language :clojure
|
2015-12-01 06:00:53 +00:00
|
|
|
:source-uri "https://github.com/ptaoussanis/nippy/blob/master/{filepath}#L{line}"}
|
|
|
|
|
|
2014-02-23 11:45:53 +00:00
|
|
|
:aliases
|
2018-10-14 10:16:53 +00:00
|
|
|
{"test-all" ["with-profile" "+1.10:+1.9:+1.8:+1.7:+1.6:+1.5" "test"]
|
2014-02-26 09:35:04 +00:00
|
|
|
"deploy-lib" ["do" "deploy" "clojars," "install"]
|
2016-06-09 12:35:37 +00:00
|
|
|
"start-dev" ["with-profile" "+dev" "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/"})
|