-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathproject.clj
36 lines (32 loc) · 1.6 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
(defproject demo-server "0.0.1-SNAPSHOT"
:description "FIXME: write description"
:url "http://example.com/FIXME"
:license {:name "Apache License 2.0"
:url "https://www.apache.org/licenses/LICENSE-2.0"
:year 2019
:key "apache-2.0"}
:dependencies [[org.clojure/clojure "1.10.3"]
[io.pedestal/pedestal.service "0.5.8"]
;; [io.pedestal/pedestal.jetty "0.5.8"]
;; [pedestal-api "0.3.5"]
;; -- PROTOC-GEN-CLOJURE --
[protojure "1.6.1"]
[protojure/google.protobuf "0.9.1"]
;; Include Undertow for supporting HTTP/2 for GRPCs
[io.undertow/undertow-core "2.2.8.Final"]
[io.undertow/undertow-servlet "2.2.8.Final"]
;; And of course, protobufs
[com.google.protobuf/protobuf-java "3.17.3"]
;; logging
[com.taoensso/timbre "5.1.2"]
[com.fzakaria/slf4j-timbre "0.3.21"]
[ch.qos.logback/logback-classic "1.2.3" :exclusions [org.slf4j/slf4j-api]]
[org.slf4j/jul-to-slf4j "1.7.30"]
[org.slf4j/jcl-over-slf4j "1.7.30"]
[org.slf4j/log4j-over-slf4j "1.7.30"]]
:min-lein-version "2.0.0"
:resource-paths ["config", "resources"]
:profiles {:dev {:aliases {"run-dev" ["trampoline" "run" "-m" "demo-server.server/run-dev"]}
:dependencies [[io.pedestal/pedestal.service-tools "0.5.9"]]}
:uberjar {:aot [demo-server.server]}}
:main ^{:skip-aot true} demo-server.server)