-
Notifications
You must be signed in to change notification settings - Fork 50
Expand file tree
/
Copy pathproject.clj
More file actions
27 lines (21 loc) · 791 Bytes
/
project.clj
File metadata and controls
27 lines (21 loc) · 791 Bytes
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
(defproject next.jdbc "0.1.0-SNAPSHOT"
:dependencies [[org.clojure/clojure "1.9.0"]
[seancorfield/next.jdbc "1.0.409"]
[org.postgresql/postgresql "42.2.11"]
[honeysql "0.9.10"]]
:main simple.main
:uberjar-name "simple-main.jar"
:profiles {:uberjar {:aot :all}
:dev {:plugins [[lein-shell "0.5.0"]]}}
:aliases
{"native"
["shell"
"native-image"
"--report-unsupported-elements-at-runtime"
"--no-server"
"--initialize-at-build-time"
"--enable-url-protocols=http,https"
"--initialize-at-run-time=org.postgresql.sspi.SSPIClient"
"-jar" "./target/${:uberjar-name:-${:name}-${:version}-standalone.jar}"
"-H:Name=./target/${:name}"]
"run-native" ["shell" "./target/${:name}"]})