-
Notifications
You must be signed in to change notification settings - Fork 13
/
project.clj
44 lines (44 loc) · 1.37 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
(defproject clojusc/mesomatic "1.0.1-r2-SNAPSHOT"
:description "A simple and idiomatic Clojure facade around the Mesos JAVA API"
:url "https://github.com/clojusc/mesomatic"
:license {:name "MIT License"}
:dependencies [
[org.clojure/clojure "1.9.0"]
[org.apache.mesos/mesos "1.0.1"]]
:profiles {
:dev {
:source-paths ["dev-resources/src"]
}
:ubercompile {
:aot :all}
:custom-repl {
:repl-options {
:init-ns mesomatic.dev
:prompt ~#(str "\u001B[35m[\u001B[34m"
%
"\u001B[35m]\u001B[33m λ\u001B[m=> ")}}
:test {
:exclusions [org.clojure/clojure]
:dependencies [
[clojusc/ltest "0.3.0-SNAPSHOT"]]
:plugins [
[jonase/eastwood "0.2.5"]
[lein-ancient "0.6.15"]
[lein-bikeshed "0.5.0"]
[lein-kibit "0.1.6"]
[lein-ltest "0.3.0-SNAPSHOT"]
[venantius/yagni "0.1.4"]]}}
:aliases {
"repl" ["with-profile" "+custom-repl,+test" "repl"]
"ubercompile" ["with-profile" "+ubercompile" "compile"]
"check-deps" ["with-profile" "+test" "ancient" "check" ":all"]
"lint" ["with-profile" "+test" "kibit"]
"test" ["with-profile" "+test" "ltest"]
"build" ["with-profile" "+test" "do"
;["check-deps"]
["lint"]
["ubercompile"]
["clean"]
["uberjar"]
["clean"]
["test"]]})