forked from cch1/http.async.client
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproject.clj
More file actions
22 lines (22 loc) · 1.12 KB
/
project.clj
File metadata and controls
22 lines (22 loc) · 1.12 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
(defproject org.clojars.vgeshel/http.async.client "0.2.2"
:description "Asynchronous HTTP Client for Clojure"
:url "http://github.com/neotyk/http.async.client/"
:source-path "src/clj"
:java-source-path "src/jvm"
:min-lein-version "1.4.1"
:dependencies [[org.clojure/clojure "1.2.1"]
[org.clojure/clojure-contrib "1.2.0"]
[com.ning/async-http-client "1.6.3"]]
:dev-dependencies [[swank-clojure "1.2.1"]
;;[autodoc "0.7.1"]
[marginalia "0.2.3"]
[org.danlarkin/clojure-json "1.1"]
[org.eclipse.jetty/jetty-server "7.1.4.v20100610"]
[org.eclipse.jetty/jetty-security "7.1.4.v20100610"]
[lein-difftest "1.2.2"]
[log4j "1.2.13"]]
;; :repositories {"snapshots" "http://oss.sonatype.org/content/repositories/snapshots/"}
:autodoc {:name "http.async.client"
:web-src-dir "http://github.com/neotyk/http.async.client/blob/"
:web-home "http://neotyk.github.com/http.async.client/autodoc/"
:copyright "Copyright 2010 Hubert Iwaniuk"})