-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathdeps.edn
26 lines (24 loc) · 1.62 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
{:paths ["src/clj" "resources" "dist"]
:deps {clj-http/clj-http {:mvn/version "3.10.3"}
clj-python/libpython-clj {:mvn/version "2.025"}
io.sentry/sentry-clj {:mvn/version "7.11.216"}
org.clojure/clojure {:mvn/version "1.11.1"}
org.flatland/ordered {:mvn/version "1.15.11"}
org.clojure/data.json {:mvn/version "1.0.0"}
org.clojure/data.csv {:mvn/version "1.0.1"}
org.clojure/data.xml {:mvn/version "0.0.8"}
ring/ring {:mvn/version "1.8.2"}
sig-gis/triangulum {:git/url "https://github.com/sig-gis/triangulum"
:git/sha "3d41dab63e1bc8ebe046f64db44ae3df986f5bdf"}}
:aliases {:build-db {:main-opts ["-m" "triangulum.build-db"]}
:config {:main-opts ["-m" "triangulum.config"]}
:https {:main-opts ["-m" "triangulum.https"]}
:server {:main-opts ["-m" "triangulum.server"]}
:systemd {:main-opts ["-m" "triangulum.systemd"]}
:rebel {:extra-deps {com.bhauman/rebel-readline {:mvn/version "0.1.4"}}
:main-opts ["-m" "rebel-readline.main"]}
:production {:jvm-opts ["-XX:MaxRAMPercentage=90" "-XX:+PrintFlagsFinal"]}
:check-reflection {:main-opts ["-e" "(do,(set!,*warn-on-reflection*,true),nil)"
"-e" "(require,'collect-earth-online.routing)"]}
:check-deps {:deps {olical/depot {:mvn/version "1.8.4"}}
:main-opts ["-m" "depot.outdated.main"]}}}