This repository has been archived by the owner on Sep 5, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
project.clj
28 lines (28 loc) · 1.81 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
(defproject de.otto/oscillator "0.2.27"
:description "A Clojure library that lets you create dashboards with
interactive charts to monitor applications in multiple environments."
:url "https://github.com/otto-de/oscillator"
:license {:name "Apache License 2.0"
:url "http://www.apache.org/license/LICENSE-2.0.html"}
:scm {:name "git"
:url "https://github.com/otto-de/oscillator"}
:plugins [[lein-cljsbuild "1.0.6"]]
:dependencies [[org.clojure/clojure "1.8.0"]
[compojure "1.3.4"]
[hiccup "1.0.5"]
[org.clojure/data.json "0.2.6"]]
:lein-release {:deploy-via :clojars}
:cljsbuild {:builds {:app {:source-paths ["src-cljs"]
:compiler {:output-to "resources/public/javascript/gen/oscillator.js"
:main "de.otto.oscillator.prod"
:asset-path "gen/out"
:jar true
:optimizations :whitespace
:pretty-print true}}}}
:hooks [leiningen.cljsbuild]
:profiles {:provided {:dependencies [[org.clojure/clojurescript "1.7.48"]
[cljs-ajax "0.3.13"]
[prismatic/dommy "1.1.0"]
[hipo "0.4.0"]]}
:dev {:plugins [[lein-release/lein-release "1.0.9"]]}
:uberjar {:aot :all}})