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
20 lines (20 loc) · 1.11 KB
/
project.clj
File metadata and controls
20 lines (20 loc) · 1.11 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
(defproject http.async.client "0.4.1"
:name "http.async.client"
:description "Asynchronous HTTP Client for Clojure"
:url "http://neotyk.github.com/http.async.client/"
:source-path "src/clj"
:java-source-path "src/jvm"
:javac-options {:deprecation "true"}
:dependencies [[org.clojure/clojure "1.3.0"]
[com.ning/async-http-client "1.7.0"]]
:dev-dependencies [[codox "0.4.0"]
[org.eclipse.jetty/jetty-server "7.1.4.v20100610"]
[org.eclipse.jetty/jetty-security "7.1.4.v20100610"]
[lein-difftest "1.3.3" :exclusions [org.clojure/clojure
org.clojure/clojure-contrib]]
[log4j "1.2.13"]
[org.slf4j/slf4j-log4j12 "1.6.4"]]
;; :repositories {"snapshots" "http://oss.sonatype.org/content/repositories/snapshots/"}
:autodoc {:web-src-dir "http://github.com/neotyk/http.async.client/blob/"
:web-home "http://neotyk.github.com/http.async.client/autodoc/"
:copyright "Copyright 2011 Hubert Iwaniuk"})