forked from riemann/riemann
-
Notifications
You must be signed in to change notification settings - Fork 0
/
project.clj
100 lines (98 loc) · 4.29 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
(defproject riemann "0.2.11-SNAPSHOT"
:description
"A network event stream processor. Intended for analytics, metrics, and alerting; and to glue various monitoring systems together."
:url "http://github.com/aphyr/riemann"
; :warn-on-reflection true
; :jvm-opts ["-server" "-d64" "-Xms1024m" "-Xmx1024m" "-XX:+UseParNewGC" "-XX:+UseConcMarkSweepGC" "-XX:+CMSParallelRemarkEnabled" "-XX:+AggressiveOpts" "-XX:+UseFastAccessorMethods" "-verbose:gc" "-XX:+PrintGCDetails"]
:jvm-opts ["-server" "-Xms1024m" "-Xmx1024m" "-XX:+UseParNewGC" "-XX:+UseConcMarkSweepGC" "-XX:+CMSParallelRemarkEnabled" "-XX:+AggressiveOpts" "-XX:+UseFastAccessorMethods" "-XX:+CMSClassUnloadingEnabled"]
:maintainer {:email "aphyr@aphyr.com"}
:dependencies [
[org.clojure/algo.generic "0.1.2"]
[org.clojure/clojure "1.6.0"]
[org.clojure/math.numeric-tower "0.0.4"]
[org.clojure/tools.logging "0.3.1"]
[org.clojure/tools.nrepl "0.2.11"]
[org.clojure/core.cache "0.6.4"]
[org.clojure/data.priority-map "0.0.7"]
[org.clojure/java.classpath "0.2.2"]
[org.slf4j/log4j-over-slf4j "1.7.12"]
[ch.qos.logback/logback-classic "1.1.3"]
[com.github.juise/logstash-logback-layout "1.0"]
[net.logstash.logback/logstash-logback-encoder "4.5"]
[com.cemerick/pomegranate "0.3.0"
:exclusions [org.codehaus.plexus/plexus-utils]]
; for pomegranate
[org.codehaus.plexus/plexus-utils "3.0"]
[org.spootnik/http-kit "2.1.18.1"]
[clj-http "1.1.2" :exclusions [org.clojure/tools.reader]]
[cheshire "5.5.0"]
[clj-librato "0.0.5"]
[clj-time "0.10.0"]
[clj-wallhack "1.0.1"]
[com.boundary/high-scale-lib "1.0.6"]
[com.draines/postal "1.11.3"]
[com.amazonaws/aws-java-sdk "1.10.5.1" :exclusions [joda-time]]
[interval-metrics "1.0.0"]
[io.netty/netty-all "4.0.30.Final"]
[clj-antlr "0.2.2"]
[riemann-clojure-client "0.4.1"]
[less-awful-ssl "1.0.0"]
[slingshot "0.12.2"]
[clj-campfire "2.2.0"]
[clj-nsca "0.0.3"]
[amazonica "0.3.28" :exclusions [joda-time]]
[capacitor "0.4.3" :exclusions [http-kit]]]
:plugins [[codox "0.6.1"]
[lein-rpm "0.0.5"
:exclusions [org.apache.maven/maven-plugin-api
org.codehaus.plexus/plexus-container-default
org.codehaus.plexus/plexus-utils
org.clojure/clojure
classworlds]]
; for lein-rpm
[org.apache.maven/maven-plugin-api "2.0"]
[org.codehaus.plexus/plexus-container-default
"1.0-alpha-9-stable-1"]
[org.codehaus.plexus/plexus-utils "1.5.15"]
[classworlds "1.1"]]
:profiles {:dev {:jvm-opts ["-XX:-OmitStackTraceInFastThrow"]
; "-Dcom.sun.management.jmxremote"
; "-XX:+UnlockCommercialFeatures"
; "-XX:+FlightRecorder"]
:dependencies [[criterium "0.4.3"]]}}
:test-selectors {:default (fn [x] (not (or (:integration x)
(:time x)
(:bench x))))
:integration :integration
:email :email
:sns :sns
:graphite :graphite
:influxdb :influxdb
:kairosdb :kairosdb
:librato :librato
:hipchat :hipchat
:nagios :nagios
:opentsdb :opentsdb
:time :time
:bench :bench
:focus :focus
:slack :slack
:cloudwatch :cloudwatch
:datadog :datadog
:stackdriver :stackdriver
:xymon :xymon
:shinken :shinken
:blueflood :blueflood
:opsgenie :opsgenie
:boundary :boundary
:all (fn [_] true)}
:javac-options ["-target" "1.6" "-source" "1.6"]
:java-source-paths ["src/riemann/"]
:java-source-path "src/riemann/"
; :aot [riemann.bin]
:main riemann.bin
:codox {:output-dir "site/api"
:src-dir-uri "http://github.com/aphyr/riemann/blob/master/"
:src-linenum-anchor-prefix "L"
:defaults {:doc/format :markdown}}
)