-
Notifications
You must be signed in to change notification settings - Fork 50
/
Copy pathproject.clj
30 lines (24 loc) · 891 Bytes
/
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 sample-project "0.1.0-SNAPSHOT"
:dependencies [[org.clojure/clojure "1.11.1"]
;; add the library here
[com.google.zetasketch/zetasketch "0.1.0"]
]
:main simple.main
:uberjar-name "simple-main.jar"
:profiles {:uberjar {:aot :all}
:dev {:plugins [[lein-shell "0.5.0"]]}}
:aliases
{"native"
["shell"
"native-image"
"-Ob"
"-H:ReflectionConfigurationFiles=./resources/META-INF/native-image/com.google/zetasketch/reflect-config.json"
"-H:+TraceNativeToolUsage"
"-H:+AllowIncompleteClasspath"
"--verbose"
"--no-fallback"
"--report-unsupported-elements-at-runtime"
"--initialize-at-build-time=clojure,simple"
"-jar" "./target/${:uberjar-name:-${:name}-${:version}-standalone.jar}"
"-H:Name=./target/${:name}"]
"run-native" ["shell" "./target/${:name}"]})