payroll-import/deps.edn
Ben Sturmfels 23cc4657ee
Make CSV file an argument, handle blank amounts and add non-zero PFML warning
Was producing an error due to new PFML field with blank amounts.
2026-02-13 13:36:15 +11:00

17 lines
869 B
Clojure

{:paths ["src" "resources" "private"] ;; Private is not included in the build
:deps {
org.clojure/clojure {:mvn/version "1.11.1"}
org.clojure/data.csv {:mvn/version "1.0.1"}
org.clojure/tools.cli {:mvn/version "1.1.230"}}
:aliases
{:dev {:extra-deps {lambdaisland/deep-diff2 {:mvn/version "2.10.211"}}
: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.9.6"}}
:ns-default build}}}