-
-
Notifications
You must be signed in to change notification settings - Fork 53
Expand file tree
/
Copy pathdeps.edn
More file actions
58 lines (57 loc) · 3.26 KB
/
deps.edn
File metadata and controls
58 lines (57 loc) · 3.26 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" "resources"]
:deps {org.clojure/clojure {:mvn/version "1.12.4"}
org.clojure/core.async {:mvn/version "1.8.741"}
org.babashka/cli {:mvn/version "0.8.65"}
com.github.clojure-lsp/jsonrpc4clj {:mvn/version "1.0.2"}
io.github.plumce/plumcp.core-json-cheshire {:mvn/version "0.2.0-beta6"}
org.yaml/snakeyaml {:mvn/version "2.4"} ;; used by eca.shared for YAML parsing
borkdude/dynaload {:mvn/version "0.3.5"}
dev.ericdallo/rewrite-json {:mvn/version "0.1.1"}
selmer/selmer {:mvn/version "1.12.69"}
babashka/fs {:mvn/version "0.5.26"}
babashka/process {:mvn/version "0.6.23"}
br.dev.zz/parc {:git/url "https://github.com/souenzzo/parc"
:git/sha "76f0714e6b93a053d67d473c33dfc279dfb94d23"}
com.cognitect/transit-clj {:mvn/version "1.0.333"}
hato/hato {:mvn/version "1.0.0"}
ring/ring-codec {:mvn/version "1.3.0"}
ring/ring-jetty-adapter {:mvn/version "1.15.2"}
com.github.steffan-westcott/clj-otel-api {:mvn/version "0.2.10"}
com.github.steffan-westcott/clj-otel-sdk-extension-autoconfigure {:mvn/version "0.2.10"}
com.github.steffan-westcott/clj-otel-exporter-otlp {:mvn/version "0.2.10"}
camel-snake-kebab/camel-snake-kebab {:mvn/version "0.4.3"}
ch.qos.logback/logback-classic {:mvn/version "1.5.18"}
com.googlecode.java-diff-utils/diffutils {:mvn/version "1.3.0"}
cheshire/cheshire {:mvn/version "6.0.0"}}
:aliases
{:dev {:extra-paths ["dev"]
:extra-deps {cider/cider-nrepl {:mvn/version "0.53.2"}
nrepl/nrepl {:mvn/version "1.3.0"}}
;; Properties useful for low-level debugging
;; :jvm-opts ["-Djdk.httpclient.HttpClient.log=headers,errors"
;; "-Dclojure.storm.instrumentOnlyPrefixes=eca,hato"
;; "-Dflowstorm.startRecording=true"]
}
:test {:extra-deps {lambdaisland/kaocha {:mvn/version "1.91.1392"}
org.clojure/test.check {:mvn/version "1.1.1"}
nubank/matcher-combinators {:mvn/version "3.9.1"}
http-kit/http-kit {:mvn/version "2.8.0"}
org.littleshoot/littleproxy {:mvn/version "1.1.2"}}
:jvm-opts ["-XX:-OmitStackTraceInFastThrow"
;; required for channeling https requirests via http
;; proxy with basic authentication scheme.
"-Djdk.http.auth.tunneling.disabledSchemes="]
:extra-paths ["test"]
:main-opts ["-m" "kaocha.runner"]}
:build {:extra-paths ["resources"]
:extra-deps {babashka/fs {:mvn/version "0.5.22"}
babashka/process {:mvn/version "0.6.23"}}
:replace-deps {io.github.clojure/tools.build {:tag "v0.10.7" :sha "573711e"}
com.github.ericdallo/deps-bin {:mvn/version "1.0.0"}
slipset/deps-deploy {:mvn/version "0.2.2"}}
:ns-default build}
:native {:jvm-opts ["-server"
"-Dborkdude.dynaload.aot=true"
"-Dclojure.compiler.direct-linking=true"
"-Dclojure.spec.skip-macros=true"]
:extra-deps {com.github.clj-easy/graal-build-time {:mvn/version "1.0.5"}}}}}