payroll-import/deps.edn

19 lines
999 B
Clojure

{:paths ["src" "resources" "private"] ;; Private is not included in the build
:deps {
;; Note that the clojure version below will be installed from upstream
;; rather than using the system version.
org.clojure/clojure {:mvn/version "1.12.4"}
org.clojure/data.csv {:mvn/version "1.1.1"}
org.clojure/tools.cli {:mvn/version "1.3.250"}}
:aliases
{:dev {:extra-deps {lambdaisland/deep-diff2 {:mvn/version "2.12.219"}}
:main-opts ["-m" "core"]
;; Saves ~ 1 second of startup time - 1.5 sec on my laptop. After
;; building an uberjar and running with these options, it drops to about
;; 750ms.
:jvm-opts ["-XX:TieredStopAtLevel=1" "-XX:+TieredCompilation"]}
:test {:extra-deps {lambdaisland/kaocha {:mvn/version "1.87.1366"}}
:main-opts ["-m" "kaocha.runner"]}
;; Run with clj -T:build function-in-build
:build {:deps {io.github.clojure/tools.build {:mvn/version "0.10.12"}}
:ns-default build}}}