-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdeps.edn
36 lines (32 loc) · 2.16 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
{:paths ["src" "resources" "target/resources"]
:deps {com.biffweb/biff #:git{:url "https://github.com/jacobobryant/biff", :sha "75fd9d7", :tag "v1.8.20"
:exclusions [cider/cider-nrepl]}
camel-snake-kebab/camel-snake-kebab {:mvn/version "0.4.3"}
metosin/muuntaja {:mvn/version "0.6.8"}
ring/ring-defaults {:mvn/version "0.3.4"}
org.clojure/clojure {:mvn/version "1.11.1"}
;; Notes on logging: https://gist.github.com/jacobobryant/76b7a08a07d5ef2cc076b048d078f1f3
org.slf4j/slf4j-simple {:mvn/version "2.0.0-alpha5"}
org.slf4j/log4j-over-slf4j {:mvn/version "1.7.36"}
org.slf4j/jul-to-slf4j {:mvn/version "1.7.36"}
org.slf4j/jcl-over-slf4j {:mvn/version "1.7.36"}
io.github.timothypratley/happyapi {:git/url "https://github.com/unifica-ai/happyapi"
:git/sha "dcd6fd41afb345ee8042d19d6819a6dea5b585e3"}
ai.unifica/temporal {;; :local/root "/Users/kyle/src/github.com/unifica-ai/components/temporal"
:git/url "[email protected]:unifica-ai/components.git"
:git/sha "73db8c66be558b9395efbe41f3c44095be4ff957"
:deps/root "temporal"}
clojure.java-time/clojure.java-time {:mvn/version "1.4.2"}
cider/cider-nrepl {:mvn/version "0.50.2"}}
:aliases
{:dev {:extra-deps {com.biffweb/tasks {:git/url "https://github.com/jacobobryant/biff", :git/sha "75fd9d7", :git/tag "v1.8.20", :deps/root "libs/tasks"}
vvvvalvalval/scope-capture {:mvn/version "0.3.3"}}
:extra-paths ["dev" "test"]
:jvm-opts ["-XX:-OmitStackTraceInFastThrow"
"-XX:+CrashOnOutOfMemoryError"
"-Dbiff.env.BIFF_PROFILE=dev"]
:main-opts ["-m" "com.biffweb.task-runner" "tasks/tasks"]}
:prod {:jvm-opts ["-XX:-OmitStackTraceInFastThrow"
"-XX:+CrashOnOutOfMemoryError"
"-Dbiff.env.BIFF_PROFILE=prod"]
:main-opts ["-m" "happyapi.temporal"]}}}