forked from spotify/lyceum
-
Notifications
You must be signed in to change notification settings - Fork 0
/
project.clj
28 lines (28 loc) · 805 Bytes
/
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 lyceum "0.1.2-SNAPSHOT"
:description "A riemann plugin to build and deploy modular rules."
:url "https://github.com/spotify/lyceum"
:license {:name "Apache License 2.0"
:url "http://www.apache.org/licenses/LICENSE-2.0.html"}
:dependencies
[
[org.clojure/clojure "1.5.1"]
[org.clojure/tools.namespace "0.2.10"]
[riemann/riemann "0.2.5"]
[http-kit "2.1.16"]
[compojure "1.1.6"]
[javax.servlet/javax.servlet-api "3.1.0"]
[base64-clj "0.1.1"]]
:plugins [
[lein-marginalia "0.7.1"]
]
:java-options ["-Dlyceum.mode=test"]
:source-path "src/"
:java-source-path "src/"
:java-source-paths ["src/"]
:test-selectors {
:default (complement :integration)
:integration :integration
:all (constantly true)
}
:main lyceum.service
)