diff options
Diffstat (limited to 'clj/bbplayground/deps.edn')
-rw-r--r-- | clj/bbplayground/deps.edn | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/clj/bbplayground/deps.edn b/clj/bbplayground/deps.edn new file mode 100644 index 0000000..0c510ce --- /dev/null +++ b/clj/bbplayground/deps.edn @@ -0,0 +1,17 @@ +{:paths ["src" "resources"] + :deps {org.clojure/clojure {:mvn/version "1.11.1"}} + :aliases + {:run-m {:main-opts ["-m" "elioat.bbplayground"]} + :run-x {:ns-default elioat.bbplayground + :exec-fn greet + :exec-args {:name "Clojure"}} + :build {:deps {io.github.seancorfield/build-clj + {:git/tag "v0.8.2" :git/sha "0ffdb4c" + ;; since we're building an app uberjar, we do not + ;; need deps-deploy for clojars.org deployment: + :deps/root "slim"}} + :ns-default build} + :test {:extra-paths ["test"] + :extra-deps {org.clojure/test.check {:mvn/version "1.1.1"} + io.github.cognitect-labs/test-runner + {:git/tag "v0.5.0" :git/sha "48c3c67"}}}}} |