-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproject.clj
24 lines (24 loc) · 995 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
(defproject mbeanz "1.1.1-SNAPSHOT"
:description "helper to find and use mbeans"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:dependencies [[org.clojure/clojure "1.7.0"]
[org.clojure/java.jmx "0.3.1"]
[org.clojure/core.match "0.3.0-alpha4"]
[compojure "1.3.4"]
[ring.middleware.logger "0.5.0"]
[http-kit "2.1.17"]
[ring/ring-mock "0.3.0"]
[ring/ring-defaults "0.1.2"]
[ring/ring-devel "1.4.0"]
[ring/ring-json "0.4.0"]
[org.clojure/data.json "0.2.6"]
[clj-stacktrace "0.2.8"]]
:plugins [[lein-ring "0.8.13"]
[jonase/eastwood "0.2.1"]
[lein-kibit "0.1.2"]
[lein-cloverage "1.0.6"]]
:ring {:handler mbeanz.handler/app}
:main mbeanz.handler
:target-path "target/%s"
:profiles {:uberjar {:aot :all}})