2025-04-14 16:33:54 +00:00
|
|
|
(defproject com.taoensso/nippy "3.5.0"
|
2014-02-23 11:45:53 +00:00
|
|
|
:author "Peter Taoussanis <https://www.taoensso.com>"
|
2025-04-15 08:00:29 +00:00
|
|
|
:description "Fast serialization library for Clojure"
|
2024-02-09 14:24:31 +00:00
|
|
|
:url "https://www.taoensso.com/nippy"
|
2022-10-13 16:27:17 +00:00
|
|
|
|
|
|
|
|
:license
|
|
|
|
|
{:name "Eclipse Public License - v 1.0"
|
|
|
|
|
:url "https://www.eclipse.org/legal/epl-v10.html"}
|
2014-07-05 07:43:24 +00:00
|
|
|
|
2014-02-23 11:45:53 +00:00
|
|
|
:dependencies
|
2025-04-14 16:13:56 +00:00
|
|
|
[[org.clojure/tools.reader "1.5.2"]
|
|
|
|
|
[com.taoensso/encore "3.142.0"]
|
2024-10-28 09:03:02 +00:00
|
|
|
[org.tukaani/xz "1.10"]
|
|
|
|
|
[io.airlift/aircompressor "2.0.2"]]
|
2014-02-23 11:45:53 +00:00
|
|
|
|
2024-02-09 14:24:31 +00:00
|
|
|
:test-paths ["test" #_"src"]
|
|
|
|
|
|
2014-02-23 11:45:53 +00:00
|
|
|
:profiles
|
2014-02-26 09:35:04 +00:00
|
|
|
{;; :default [:base :system :user :provided :dev]
|
2025-04-14 16:13:56 +00:00
|
|
|
:provided {:dependencies [[org.clojure/clojure "1.11.4"]]}
|
2024-10-28 11:06:51 +00:00
|
|
|
:c1.12 {:dependencies [[org.clojure/clojure "1.12.0"]]}
|
2025-04-14 16:13:56 +00:00
|
|
|
:c1.11 {:dependencies [[org.clojure/clojure "1.11.4"]]}
|
|
|
|
|
:c1.10 {:dependencies [[org.clojure/clojure "1.10.3"]]}
|
2022-10-13 16:27:17 +00:00
|
|
|
|
2024-02-09 14:24:31 +00:00
|
|
|
:graal-tests
|
|
|
|
|
{:source-paths ["test"]
|
|
|
|
|
:main taoensso.graal-tests
|
|
|
|
|
:aot [taoensso.graal-tests]
|
|
|
|
|
:uberjar-name "graal-tests.jar"
|
|
|
|
|
:dependencies
|
2024-04-30 09:13:27 +00:00
|
|
|
[[org.clojure/clojure "1.11.3"]
|
2024-02-09 14:24:31 +00:00
|
|
|
[com.github.clj-easy/graal-build-time "1.0.5"]]}
|
|
|
|
|
|
|
|
|
|
:dev
|
2020-08-29 12:18:46 +00:00
|
|
|
{:jvm-opts
|
2022-10-13 16:27:17 +00:00
|
|
|
["-server"
|
|
|
|
|
"-Xms1024m" "-Xmx2048m"
|
|
|
|
|
"-Dtaoensso.elide-deprecated=true"
|
2020-09-10 16:42:25 +00:00
|
|
|
"-Dtaoensso.nippy.thaw-serializable-allowlist-base=base.1, base.2"
|
2025-04-14 20:17:14 +00:00
|
|
|
"-Dtaoensso.nippy.thaw-serializable-allowlist-add=add.1 , add.2"
|
|
|
|
|
#_"-Dtaoensso.nippy.target-release=320"
|
|
|
|
|
#_"-Dtaoensso.nippy.target-release=350"]
|
2022-10-13 16:27:17 +00:00
|
|
|
|
|
|
|
|
:global-vars
|
|
|
|
|
{*warn-on-reflection* true
|
|
|
|
|
*assert* true
|
|
|
|
|
*unchecked-math* false #_:warn-on-boxed}
|
|
|
|
|
|
2020-08-29 12:18:46 +00:00
|
|
|
:dependencies
|
2023-09-25 13:16:48 +00:00
|
|
|
[[org.clojure/test.check "1.1.1"]
|
2024-02-25 18:11:20 +00:00
|
|
|
[org.clojure/data.fressian "1.1.0"]]
|
2014-07-05 07:43:24 +00:00
|
|
|
|
2024-02-09 14:24:31 +00:00
|
|
|
:plugins
|
2024-02-06 08:27:56 +00:00
|
|
|
[[lein-pprint "1.3.2"]
|
2025-04-14 16:13:56 +00:00
|
|
|
[lein-ancient "0.7.0"]]}}
|
2022-10-13 16:27:17 +00:00
|
|
|
|
2014-02-23 11:45:53 +00:00
|
|
|
:aliases
|
2022-10-13 16:27:17 +00:00
|
|
|
{"start-dev" ["with-profile" "+dev" "repl" ":headless"]
|
|
|
|
|
;; "build-once" ["do" ["clean"] ["cljsbuild" "once"]]
|
|
|
|
|
"deploy-lib" ["do" #_["build-once"] ["deploy" "clojars"] ["install"]]
|
2014-02-23 11:45:53 +00:00
|
|
|
|
2025-04-14 16:14:14 +00:00
|
|
|
"test-clj" ["with-profile" "+c1.12:+c1.11:+c1.10" "test"]
|
|
|
|
|
;; "test-cljs" ["with-profile" "+c1.12" "cljsbuild" "test"]
|
2022-10-13 16:27:17 +00:00
|
|
|
"test-all" ["do" ["clean"] ["test-clj"] #_["test-cljs"]]})
|