forked from ring-clojure/ring
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproject.clj
24 lines (24 loc) · 824 Bytes
/
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
(defproject ring "0.3.2"
:description "A Clojure web applications library."
:url "http://github.com/mmcgrana/ring"
:dependencies
[[ring/ring-core "0.3.2"]
[ring/ring-devel "0.3.2"]
[ring/ring-httpcore-adapter "0.3.2"]
[ring/ring-jetty-adapter "0.3.2"]
[ring/ring-servlet "0.3.2"]]
:dev-dependencies
[[autodoc "0.7.1"]
[lein-clojars "0.6.0"]]
:autodoc
{:name "Ring"
:description "A Clojure web applications library"
:copyright "Copyright 2009-2010 Mark McGranaghan"
:root "."
:source-path ""
:web-src-dir "http://github.com/mmcgrana/ring/blob/"
:web-home "http://mmcgrana.github.com/ring/"
:output-path "autodoc"
:namespaces-to-document ["ring"]
:trim-prefix "ring."
:load-except-list [#"/example/" #"/test/" #"project\.clj"]})