-
Notifications
You must be signed in to change notification settings - Fork 3
/
project.clj
48 lines (46 loc) · 1.93 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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
(defproject alekcz/fire "0.6.0-SNAPSHOT"
:description "Firebase from Clojure. Basically Charmander 2.0"
:url "https://github.com/alekcz/fire"
:license {:name "EPL-2.0 OR GPL-2.0-or-later WITH Classpath-exception-2.0"
:url "https://www.eclipse.org/legal/epl-2.0/"}
:dependencies [ [org.clojure/clojure "1.11.3"]
[org.clojure/core.async "1.6.681"]
[http-kit "2.7.0"]
[cheshire "5.13.0"]
[environ "1.2.0"]
[stylefruits/gniazdo "1.2.1"]
[danlentz/clj-uuid "0.1.9"]
]
:plugins [[lein-cloverage "1.2.2"]
[lein-eftest "0.5.9"]
]
:jvm-opts ["-Dclojure.compiler.direct-linking=true"]
:javac-options ["--release" "8" "-g"]
:global-vars {*warn-on-reflection* true}
:main fire.graal
:repl-options {:init-ns fire.core}
:cloverage {:runner :eftest
:runner-opts {:test-warn-time 500
:fail-fast? false
:multithread? :namespaces}}
:profiles { :dev {:plugins [[lein-shell "0.5.0"]]
:env {:wrong-api "GARBAGE"}
:dependencies [ [com.climate/claypoole "1.1.4"]
[criterium "0.4.6"]
[com.taoensso/nippy "3.1.1"]
[metosin/malli "0.8.0"]
[eftest/eftest "0.5.9"]]}}
:aliases
{"native"
["shell"
"native-image"
"--report-unsupported-elements-at-runtime"
"--no-server"
"--allow-incomplete-classpath"
"--initialize-at-build-time"
"--no-fallback"
"--initialize-at-run-time=org.httpkit.client.ClientSslEngineFactory\\$SSLHolder"
"--enable-url-protocols=http,https"
"-jar" "./target/${:uberjar-name:-${:name}-${:version}-standalone.jar}"
"-H:Name=./target/${:name}"]
"run-native" ["shell" "./target/${:name}"]})