forked from clojusc/meson
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproject.clj
44 lines (44 loc) · 1.57 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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
(defproject meson "0.1.0-SNAPSHOT"
:description "Clojure Client Library for the Mesos HTTP API"
:url "https://github.com/clojusc/meson"
:license {:name "Apache License, Version 2.0"
:url "http://www.apache.org/licenses/LICENSE-2.0"}
:dependencies [[org.clojure/clojure "1.8.0"]
[org.clojure/data.codec "0.1.0"]
[org.clojure/data.json "0.2.6"]
[org.apache.mesos/mesos "1.0.1"]
[clj-http "3.3.0"]
[clojusc/twig "0.2.6"]
[leiningen-core "2.7.1"]]
:plugins [[lein-codox "0.10.0"]]
:codox {
:project {
:name "meson"
:description "Clojure Client Library for the Mesos HTTP API"}
:namespaces [#"^meson\.(?!debug)"]
:output-path "docs/master/current"
:doc-paths ["docs/source"]
:metadata {
:doc/format :markdown
:doc "Documentation forthcoming"}}
:profiles {
:uber {
:aot :all}
:test {
:dependencies [
[jonase/eastwood "0.2.3" :exclusions [org.clojure/clojure]]
[lein-kibit "0.1.2" :exclusions [org.clojure/clojure]]]
:plugins [
[jonase/eastwood "0.2.3" :exclusions [org.clojure/clojure]]
[lein-kibit "0.1.2" :exclusions [org.clojure/clojure]]]
:test-selectors {
:default :unit
:unit :unit
:system :system
:integration :integration}}
:dev {
:source-paths ["dev-resources/src"]
:repl-options {:init-ns meson.debug}
:dependencies [
[org.clojure/tools.namespace "0.2.11"
:exclusions [org.clojure/clojure]]]}})