forked from riemann/riemann
-
Notifications
You must be signed in to change notification settings - Fork 0
/
project.clj
122 lines (121 loc) · 5.01 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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
(defproject riemann "0.3.11-SNAPSHOT"
:description
"A network event stream processor. Intended for analytics, metrics, and alerting; and to glue various monitoring systems together."
:url "https://github.com/riemann/riemann"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
; :warn-on-reflection true
:jvm-opts ["-server" "-Xms1024m" "-Xmx1024m" "-XX:+CMSParallelRemarkEnabled" "-XX:+AggressiveOpts" "-XX:+CMSClassUnloadingEnabled" "-XX:+IgnoreUnrecognizedVMOptions"]
:maintainer {:email "aphyr@aphyr.com"}
:dependencies [
[org.clojure/algo.generic "0.1.2"]
[org.clojure/clojure "1.11.1"]
[org.clojure/math.numeric-tower "0.0.4"]
[org.clojure/tools.logging "1.2.1"]
[org.clojure/tools.nrepl "0.2.13"]
[org.clojure/core.cache "0.6.5"]
[org.clojure/data.priority-map "0.0.10"]
[org.clojure/java.classpath "0.3.0"]
[org.slf4j/log4j-over-slf4j "1.7.32"]
[javax.xml.bind/jaxb-api "2.4.0-b180830.0359"]
[ch.qos.logback/logback-classic "1.2.10"]
[com.github.juise/logstash-logback-layout "1.0"]
[net.logstash.logback/logstash-logback-encoder "6.4"]
[org.influxdb/influxdb-java "2.21"]
[com.influxdb/influxdb-client-java "2.2.0"]
[clj-commons/pomegranate "1.2.1"
:exclusions [org.codehaus.plexus/plexus-utils]]
; for pomegranate
[org.codehaus.plexus/plexus-utils "3.2.0"]
[http-kit "2.2.0"]
[clj-http "3.10.0"]
[cheshire "5.8.0"]
[clj-librato "0.0.5"]
[clj-time "0.14.2"]
[clj-wallhack "1.0.1"]
[com.boundary/high-scale-lib "1.0.6"]
[com.draines/postal "2.0.2"]
[com.amazonaws/aws-java-sdk "1.11.116" :exclusions [joda-time]]
[interval-metrics "1.0.0"]
[clj-antlr "0.2.4"]
[io.netty/netty-all "4.1.41.Final"]
[riemann-clojure-client "0.5.4"]
[less-awful-ssl "1.0.4"]
[slingshot "0.12.2"]
[cljr-nsca "0.0.4"]
[amazonica "0.3.161" :exclusions [joda-time]]
[spootnik/kinsky "0.1.26"]
[pjstadig/humane-test-output "0.8.3"]
[com.novemberain/langohr "5.1.0"]
[com.fasterxml.jackson.core/jackson-core "2.10.0"]
[com.fasterxml.jackson.core/jackson-databind "2.10.0"]]
:managed-dependencies [[org.jsoup/jsoup "1.14.3"]]
:plugins [[lein-codox "0.10.8"]
[lein-difftest "2.0.0"]
[lein-ancient "0.6.15"]
[lein-rpm "0.0.6"
: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
"2.0.0"]
[org.codehaus.plexus/plexus-utils "3.2.0"]
[classworlds "1.1"]
[test2junit "1.3.3"]]
:test2junit-output-dir "target/test2junit"
:profiles {:dev {:jvm-opts ["-XX:-OmitStackTraceInFastThrow"]
; "-Dcom.sun.management.jmxremote"
; "-XX:+UnlockCommercialFeatures"
; "-XX:+FlightRecorder"]
:dependencies [[criterium "0.4.4"]]}
:uberjar {:aot :all}}
:test-selectors {:default (fn [x] (not (or (:integration x)
(:time x)
(:bench x))))
:integration :integration
:email :email
:sns :sns
:graphite :graphite
:influxdb :influxdb
:influxdb2 :influxdb2
:kairosdb :kairosdb
:librato :librato
:hipchat :hipchat
:nagios :nagios
:opentsdb :opentsdb
:rabbitmq :rabbitmq
:time :time
:bench :bench
:focus :focus
:slack :slack
:druid :druid
:cloudwatch :cloudwatch
:datadog :datadog
:stackdriver :stackdriver
:xymon :xymon
:shinken :shinken
:telegram :telegram
:blueflood :blueflood
:opsgenie :opsgenie
:boundary :boundary
:prometheus :prometheus
:elasticsearch :elasticsearch
:netuitive :netuitive
:kafka :kafka
:pushover :pushover
:msteams :msteams
:clickhouse :clickhouse
: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-path "site/api"
:source-uri "https://github.com/riemann/riemann/blob/{version}/{filepath}#L{line}"
:metadata {:doc/format :markdown}}
)