-
Notifications
You must be signed in to change notification settings - Fork 0
/
project.clj
34 lines (34 loc) · 1.58 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
(defproject duct-pedestal-reitit "0.1.0-SNAPSHOT"
:description "FIXME: write description"
:url "http://example.com/FIXME"
:min-lein-version "2.0.0"
:dependencies [[org.clojure/clojure "1.10.0"]
[duct/core "0.7.0"]
[duct/module.logging "0.4.0"]
[duct/module.sql "0.5.0"]
[org.postgresql/postgresql "42.2.5"]
[io.pedestal/pedestal.service "0.5.5"]
[io.pedestal/pedestal.jetty "0.5.5"]
[metosin/reitit "0.3.7"]
[metosin/reitit-pedestal "0.3.7"]
[metosin/muuntaja "0.6.4"]
[ch.qos.logback/logback-classic "1.2.3" :exclusions [org.slf4j/slf4j-api]]
[org.slf4j/jcl-over-slf4j "1.7.26"]
[org.slf4j/jul-to-slf4j "1.7.26"]
[org.slf4j/log4j-over-slf4j "1.7.26"]]
:plugins [[duct/lein-duct "0.12.1"]]
:main ^:skip-aot duct-pedestal-reitit.main
:resource-paths ["resources" "target/resources"]
:prep-tasks ["javac" "compile" ["run" ":duct/compiler"]]
:middleware [lein-duct.plugin/middleware]
:profiles
{:dev [:project/dev :profiles/dev]
:repl {:prep-tasks ^:replace ["javac" "compile"]
:repl-options {:init-ns user}}
:uberjar {:aot :all}
:profiles/dev {}
:project/dev {:source-paths ["dev/src"]
:resource-paths ["dev/resources"]
:dependencies [[integrant/repl "0.3.1"]
[eftest "0.5.7"]
[kerodon "0.9.0"]]}})