forked from http-kit/http-kit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
project.clj
28 lines (28 loc) · 1.46 KB
/
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
25
26
27
28
(defproject http-kit "2.0.0-SNAPSHOT"
:description "High-performance event-driven HTTP client/server for Clojure"
:dependencies [[org.clojure/clojure "1.4.0"]
[org.clojure/tools.macro "0.1.1"]]
:warn-on-reflection true
:min-lein-version "2.0.0"
:url "http://http-kit.org/"
:javac-options ["-source" "1.6" "-target" "1.6" "-g"]
:java-source-paths ["src/java"]
:test-paths ["test"]
:jar-exclusions [#".*java$"]
:plugins [[lein-swank "1.4.4"]]
:license {:name "Apache License, Version 2.0"
:url "http://www.apache.org/licenses/LICENSE-2.0.html"}
:profiles {:1.5 {:dependencies [[org.clojure/clojure "1.5.0-master-SNAPSHOT"]]}
:dev {:dependencies [[junit/junit "4.8.2"]
[org.slf4j/slf4j-api "1.6.4"]
[ch.qos.logback/logback-classic "1.0.1"]
[clj-http "0.6.0"]
[io.netty/netty "3.6.2.Final"]
[org.clojure/data.json "0.1.2"]
[org.jsoup/jsoup "1.7.1"]
[http.async.client "0.5.2"]
[org.clojure/tools.logging "0.2.3"]
[compojure "1.0.2"]
[org.clojure/tools.cli "0.2.1"]
[ring/ring-jetty-adapter "1.1.6"]
[ring/ring-core "1.1.6"]]}})