-
Notifications
You must be signed in to change notification settings - Fork 18
/
project.clj
20 lines (20 loc) · 1.04 KB
/
project.clj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
(defproject finagle-clojure "0.7.1-SNAPSHOT"
:description "A light wrapper around Finagle for Clojure"
:url "https://github.com/twitter/finagle-clojure"
:license {:name "Apache License, Version 2.0"
:url "https://www.apache.org/licenses/LICENSE-2.0"}
:scm {:name "git" :url "https://github.com/finagle/finagle-clojure"}
:dependencies [[finagle-clojure/core "0.7.1-SNAPSHOT"]
[finagle-clojure/thrift "0.7.1-SNAPSHOT"]
[finagle-clojure/thriftmux "0.7.1-SNAPSHOT"]
[finagle-clojure/http "0.7.1-SNAPSHOT"]
[finagle-clojure/mysql "0.7.1-SNAPSHOT"]]
:plugins [[lein-sub "0.3.0"]
[codox "0.8.10"]
[lein-midje "3.2"]]
:sub ["core" "thrift" "thriftmux" "http" "mysql"]
:codox {:sources ["core/src" "thrift/src" "thriftmux/src" "http/src" "mysql/src"]
:defaults {:doc/format :markdown}
:output-dir "doc/codox"
:src-dir-uri "https://github.com/finagle/finagle-clojure/blob/master/"
:src-linenum-anchor-prefix "L"})