-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdeps.edn
More file actions
58 lines (51 loc) · 3.85 KB
/
deps.edn
File metadata and controls
58 lines (51 loc) · 3.85 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
49
50
51
52
53
54
55
56
57
58
{:paths ["src" "target" "resources"]
:test-paths ["test"]
:deps {org.clojure/clojure {:mvn/version "1.12.1"}
com.taoensso/telemere {:mvn/version "1.2.1"}
thheller/shadow-cljs {:mvn/version "2.28.11"}
com.github.steffan-westcott/clj-otel-api {:mvn/version "0.2.10"}
;; cljs (TODO test only?)
funcool/promesa {:mvn/version "11.0.678"}
;;stuff
net.cgrand/macrovich {:mvn/version "0.2.2"}
cheshire/cheshire {:mvn/version "5.13.0"}}
:aliases {:nrepl {:extra-paths ["test"]
:extra-deps {nrepl/nrepl {:mvn/version "1.3.1"}}
:main-opts ["-m" "nrepl.cmdline" "--port" "7888"]}
:dev {:extra-paths ["dev" "test"]
:_jvm-opts ["-Djdk.attach.allowAttachSelf"
"-javaagent:./opentelemetry-javaagent.jar"
"-Dotel.instrumentation.common.default-enabled=true"
"-Dotel.javaagent.debug=false"
"-Dotel.exporter.otlp.protocol=grpc"
"-Dotel.exporter.otlp.endpoint=http://localhost:4317"
"-Dotel.instrumentation.netty.enabled=false"
"-Dotel.metrics.exporter=none"
"-Dotel.logs.exporter=none"
"-Dotel.javaagent.debug=false"
"-Dotel.resource.attributes=service.name=intemporal"]
:extra-deps {exoscale/automata {:mvn/version "0.1.10"}
lambdaisland/kaocha {:mvn/version "1.91.1392"}
lambdaisland/kaocha-cloverage {:mvn/version "1.1.89"}
lambdaisland/kaocha-junit-xml {:mvn/version "1.17.101"}
com.lambdaisland/kaocha-cljs {:mvn/version "1.5.154"}
ch.qos.logback/logback-classic {:mvn/version "1.5.18"}
tortue/spy {:mvn/version "2.15.0"}
nubank/matcher-combinators {:mvn/version "3.9.2"}
com.clojure-goes-fast/clj-async-profiler {:mvn/version "1.6.2"}
nrepl/nrepl {:mvn/version "1.3.1"}}}
:fdb {:extra-deps {org.foundationdb/fdb-java {:mvn/version "7.3.62"}
me.vedang/clj-fdb {:mvn/version "0.3.0"}}}
:jdbc {:extra-deps {com.github.seancorfield/next.jdbc {:mvn/version "1.3.1048"}
org.postgresql/postgresql {:mvn/version "42.7.7"}
hikari-cp/hikari-cp {:mvn/version "3.3.0"}
migratus/migratus {:mvn/version "1.6.4"}}}
:doc {:extra-paths ["doc"]}
:cljs {:extra-deps {org.clojure/clojurescript {:mvn/version "1.12.42"}
thheller/shadow-cljs {:mvn/version "3.2.0"}
hiccups/hiccups {:mvn/version "0.3.0"}}}
:build {:extra-paths ["build"]
:deps {io.github.clojure/tools.build {:mvn/version "0.10.10"}}
:ns-default build}
:test {:jvm-opts ["--enable-native-access=ALL-UNNAMED"]
:main-opts ["-m" "kaocha.runner"]}}}