forked from duct-framework/module.web
-
Notifications
You must be signed in to change notification settings - Fork 0
/
project.clj
20 lines (20 loc) · 883 Bytes
/
project.clj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
(defproject duct/module.web "0.7.0"
:description "Duct module for running web applications"
:url "https://github.com/duct-framework/module.web"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:dependencies [[org.clojure/clojure "1.10.1"]
[duct/core "0.8.0"]
[duct/logger "0.3.0"]
[duct/server.http.jetty "0.2.1"]
[compojure "1.6.2"]
[integrant "0.8.0"]
[metosin/muuntaja "0.6.7"]
[org.slf4j/slf4j-nop "1.7.30"]
[org.webjars/normalize.css "5.0.0"]
[ring/ring-core "1.8.1"]
[ring/ring-devel "1.8.1"]
[ring/ring-defaults "0.3.2"]
[ring-webjars "0.2.0"]]
:profiles
{:dev {:dependencies [[ring/ring-mock "0.4.0"]]}})