-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdeps.edn
More file actions
48 lines (40 loc) · 1.8 KB
/
deps.edn
File metadata and controls
48 lines (40 loc) · 1.8 KB
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
43
44
45
46
47
48
{:paths ["src/clojure" "src/java" "classes"]
:mvn/repos {"clojars" {:url "https://repo.clojars.org/"}}
:deps {org.clojure/clojure {:mvn/version "1.12.0"}
org.apache.lucene/lucene-core {:mvn/version "10.3.2"}
org.apache.lucene/lucene-analysis-common {:mvn/version "10.3.2"}
org.apache.lucene/lucene-queryparser {:mvn/version "10.3.2"}
com.fasterxml.jackson.core/jackson-core {:mvn/version "2.17.2"}
com.fasterxml.jackson.core/jackson-databind {:mvn/version "2.17.2"}
org.replikativ/yggdrasil {:mvn/version "0.2.14"}}
:aliases
{:build
{:deps {io.github.clojure/tools.build {:mvn/version "0.10.6"}
slipset/deps-deploy {:mvn/version "0.2.0"}}
:ns-default build}
:test
{:extra-paths ["test"]
:extra-deps {io.github.cognitect-labs/test-runner
{:git/tag "v0.5.1" :git/sha "dfb30dd"}
org.replikativ/hasch {:mvn/version "0.3.96"}}
:main-opts ["-m" "cognitect.test-runner"]}
:format
{:extra-deps {cljfmt/cljfmt {:mvn/version "0.9.2"}}
:main-opts ["-m" "cljfmt.main" "check"]}
:ffix
{:extra-deps {cljfmt/cljfmt {:mvn/version "0.9.2"}}
:main-opts ["-m" "cljfmt.main" "fix"]}
:repl
{:extra-deps {nrepl/nrepl {:mvn/version "1.3.0"}
cider/cider-nrepl {:mvn/version "0.50.2"}}
:jvm-opts ["--enable-native-access=ALL-UNNAMED"]
:main-opts ["-m" "nrepl.cmdline" "--middleware"
"[cider.nrepl/cider-middleware]"]}
:datahike-experiment
{:extra-paths ["dev"]
:extra-deps {io.replikativ/datahike {:local/root "../datahike"}
nrepl/nrepl {:mvn/version "1.3.0"}
cider/cider-nrepl {:mvn/version "0.50.2"}}
:jvm-opts ["--enable-native-access=ALL-UNNAMED"]
:main-opts ["-m" "nrepl.cmdline" "--middleware"
"[cider.nrepl/cider-middleware]"]}}}