-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathproject.clj
21 lines (21 loc) · 1015 Bytes
/
project.clj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
(defproject geheimtur-demo "0.0.1-SNAPSHOT"
:description "Geheimtür Demo Application"
:url "https://github.com/propan/geheimtur-demo"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:dependencies [[org.clojure/clojure "1.9.0"]
[io.pedestal/pedestal.service "0.5.4"]
[io.pedestal/pedestal.jetty "0.5.4"]
[hiccup "1.0.5"]
[geheimtur "0.4.0"]
[cheshire "5.7.0"]
[ch.qos.logback/logback-classic "1.1.8" :exclusions [org.slf4j/slf4j-api]]
[org.slf4j/jul-to-slf4j "1.7.22"]
[org.slf4j/jcl-over-slf4j "1.7.22"]
[org.slf4j/log4j-over-slf4j "1.7.22"]]
:min-lein-version "2.0.0"
:resource-paths ["config", "resources"]
:aliases {"run-dev" ["trampoline" "run" "-m" "geheimtur-demo.server/run-dev"]}
:uberjar-name "geheimtur-demo.jar"
:main geheimtur-demo.server
:profiles {:uberjar {:aot :all}})