-
Notifications
You must be signed in to change notification settings - Fork 1
/
deps.edn
42 lines (39 loc) · 2.89 KB
/
deps.edn
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
{:mvn/repos {"nu-codeartifact" {:url "https://maven.cicd.nubank.world"}}
:paths ["src"]
:deps {org.clojure/clojure {:mvn/version "1.10.3"}
selmer/selmer {:mvn/version "1.12.33"}
dev.nubank/clj-github {:mvn/version "0.4.2"}
dev.nubank/clj-github-mock {:mvn/version "0.2.0"}
http-kit/http-kit {:mvn/version "2.4.0-alpha3"}
http-kit.fake/http-kit.fake {:mvn/version "0.2.2"}
cheshire/cheshire {:mvn/version "5.10.0"}}
:aliases {:dev {:extra-paths ["test" "test/integration"]
:main-opts ["-e" "(require,'nu)" "-m" "nrepl.cmdline" "--middleware" "[cider.nrepl/cider-middleware]"]
:extra-deps {nubank/matcher-combinators {:mvn/version "3.8.5"}
cider/cider-nrepl {:mvn/version "0.29.0"}
cljdev/cljdev {:mvn/version "0.11.0"}}}
:test {:extra-paths ["test/unit" "test/integration" "test-resources"]
:extra-deps {org.clojure/test.check {:mvn/version "0.10.0"}
nubank/matcher-combinators {:mvn/version "3.8.5"}
nubank/state-flow {:mvn/version "5.11.3"}
robert/hooke {:mvn/version "1.3.0"}}}
:test-runner {:extra-deps {com.cognitect/test-runner {:git/url "https://github.com/cognitect-labs/test-runner.git"
:sha "209b64504cb3bd3b99ecfec7937b358a879f55c1"}}
:main-opts ["-m" "cognitect.test-runner"]}
:lint {:extra-deps {cljfmt/cljfmt {:mvn/version "0.6.4"}}
:main-opts ["-m" "cljfmt.main" "check" "src" "test" "--indents" ".cljfmt-indents.edn"]}
:lint/fix {:extra-deps {cljfmt/cljfmt {:mvn/version "0.6.4"}}
:main-opts ["-m" "cljfmt.main" "fix" "src" "test" "--indents" ".cljfmt-indents.edn"]}
:nsorg {:extra-deps {nsorg-cli/nsorg-cli {:mvn/version "0.3.1"}}
:main-opts ["-m" "nsorg.cli" "src" "test"]}
:nsorg/fix {:extra-deps {nsorg-cli/nsorg-cli {:mvn/version "0.3.1"}}
:main-opts ["-m" "nsorg.cli" "src" "test" "--replace"]}
:kondo {:extra-deps {clj-kondo/clj-kondo {:mvn/version "2021.02.13"}}
:main-opts ["-m" "clj-kondo.main" "--config" ".clj-kondo/config.edn" "--lint" "src" "test"]}
:build-uberjar {:extra-deps {seancorfield/depstar {:mvn/version "1.0.94"}}
:main-opts ["-m"
"hf.depstar.uberjar"
"target/ordnungsamt.jar"
"-C"
"-m"
"ordnungsamt.core"]}}}