forked from ring-clojure/ring
-
Notifications
You must be signed in to change notification settings - Fork 0
/
project.clj
21 lines (21 loc) · 862 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 ring "1.7.1"
:description "A Clojure web applications library."
:url "https://github.com/ring-clojure/ring"
:license {:name "The MIT License"
:url "https://opensource.org/licenses/MIT"}
:dependencies [[ring/ring-core "1.7.1"]
[ring/ring-devel "1.7.1"]
[ring/ring-jetty-adapter "1.7.1"]
[ring/ring-servlet "1.7.1"]]
:plugins [[lein-sub "0.2.4"]
[lein-codox "0.10.3"]]
:sub ["ring-core"
"ring-devel"
"ring-jetty-adapter"
"ring-servlet"]
:codox {:output-path "codox"
:source-uri "https://github.com/ring-clojure/ring/blob/{version}/{filepath}#L{line}"
:source-paths ["ring-core/src"
"ring-devel/src"
"ring-jetty-adapter/src"
"ring-servlet/src"]})