-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproject.clj
More file actions
22 lines (22 loc) · 1.31 KB
/
project.clj
File metadata and controls
22 lines (22 loc) · 1.31 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
(defproject hs-server "0.1.0-SNAPSHOT"
:description "FIXME: write description"
:url "http://example.com/FIXME"
: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.10.1"]
[ring/ring-core "1.8.2"]
[ring/ring-jetty-adapter "1.8.2"]
[ring/ring-json "0.4.0"]
[com.github.seancorfield/next.jdbc "1.1.643"]
[org.postgresql/postgresql "42.2.18.jre7"]
[expound "0.8.9"] ; Приятные отчёты об ошибках для clojure.spec.alpha.
[camel-snake-kebab "0.4.2"] ; Либа для форматирования стиля написания.
[integrant "0.8.0"] ; Либа для создания компонентов.
[spootnik/signal "0.2.4"] ; Либа для обработки сигналов.
[aero "1.1.6"] ; Либа для чтения edn-конфигов с тегами.
[ring-cors "0.1.13"]
[compojure "1.6.2"]]
:main ^:skip-aot hs-server.core
:target-path "target/%s"
:profiles {:uberjar {:aot :all
:jvm-opts ["-Dclojure.compiler.direct-linking=true"]}})