forked from weavejester/compojure
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproject.clj
More file actions
18 lines (18 loc) · 849 Bytes
/
project.clj
File metadata and controls
18 lines (18 loc) · 849 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
(defproject compojure "1.2.0-SNAPSHOT"
:description "A concise routing library for Ring"
:url "https://github.com/weavejester/compojure"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:dependencies [[org.clojure/clojure "1.2.1"]
[org.clojure/core.incubator "0.1.0"]
[org.clojure/tools.macro "0.1.0"]
[clout "1.1.0"]
[ring/ring-core "1.1.7"]]
:plugins [[codox "0.6.4"]]
:codox {:src-dir-uri "http://github.com/weavejester/compojure/blob/1.1.3"
:src-linenum-anchor-prefix "L"}
:profiles
{:dev {:dependencies [[ring-mock "0.1.3"]]}
:1.3 {:dependencies [[org.clojure/clojure "1.3.0"]]}
:1.4 {:dependencies [[org.clojure/clojure "1.4.0"]]}
:1.5 {:dependencies [[org.clojure/clojure "1.5.1"]]}})