-
Notifications
You must be signed in to change notification settings - Fork 0
/
project.clj
30 lines (29 loc) · 1.16 KB
/
project.clj
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
(defproject georgetown "0.0.1"
:source-paths ["src"]
:dependencies [[org.clojure/clojure "1.11.0"]
[io.bloomventures/omni "0.34.0"]
[http-kit "2.8.0"]
[io.bloomventures/commons "0.14.11"]
[io.github.escherize/huff "0.2.12"]
[ring/ring-defaults "0.5.0"]
[com.hyperfiddle/rcf "20220926-202227"]
[tada "0.2.2"]
[jarohen/chime "0.3.3"]
[com.draines/postal "2.0.3"]
[applied-science/js-interop "0.4.2"]
;; db
[datalevin "0.9.5"]
[com.taoensso/nippy "3.3.0"]
[io.airlift/aircompressor "0.26"]]
:jvm-opts [;; datalevin
"--add-opens=java.base/java.nio=ALL-UNNAMED"
"--add-opens=java.base/sun.nio.ch=ALL-UNNAMED"]
:main georgetown.core
:plugins [[io.bloomventures/omni "0.34.0"]]
:omni-config georgetown.omni-config/omni-config
:profiles {:dev
{:source-paths ["dev-src"]}
:uberjar
{:aot :all
:prep-tasks [["omni" "compile"]
"compile"]}})