aboutsummaryrefslogtreecommitdiff
path: root/challenge-199/tyler-wardhaugh/clojure/deps.edn
blob: e09444c323bf6a0a5f145e37afcf27bac7ac75dd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{:paths ["src" "resources"]
 :deps {org.clojure/clojure {:mvn/version "1.11.1"}}
 :aliases
 {:t1 {:main-opts ["-m" "c199.t1"]}
  :t2 {:main-opts ["-m" "c199.t2"]}
  :build {:deps {io.github.seancorfield/build-clj
                 {:git/tag "v0.8.3" :git/sha "7ac1f8d"
                  ;; 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.1" :git/sha "dfb30dd"}}}}}