-
Notifications
You must be signed in to change notification settings - Fork 20
/
project.clj
19 lines (19 loc) · 909 Bytes
/
project.clj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
(defproject org.duct-framework/module.web "0.11.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.11.4"]
[org.duct-framework/logger "0.4.0"]
[org.duct-framework/server.http.jetty "0.3.0"]
[org.duct-framework/router.reitit "0.2.0"]
[integrant "0.13.1"]
[hiccup "2.0.0-RC4"]
[org.slf4j/slf4j-nop "2.0.16"]
[org.webjars/normalize.css "5.0.0"]
[ring/ring-core "1.13.0"]
[ring/ring-devel "1.13.0"]
[ring/ring-defaults "0.5.0"]
[ring-webjars "0.3.0"]]
:profiles
{:dev {:dependencies [[ring/ring-mock "0.4.0"]]}})