-
Notifications
You must be signed in to change notification settings - Fork 0
/
project.clj
42 lines (42 loc) · 1.23 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
(defproject clozhang/examples "0.1.0-SNAPSHOT"
:description "FIXME: write description"
:url "https://github.com/clozhang/examples"
:license {
:name "Apache License, Version 2.0"
:url "http://www.apache.org/licenses/LICENSE-2.0"}
:exclusions [org.clojure/clojure]
:dependencies [
[clozhang/zhang-redis-plugin "0.1.0-SNAPSHOT"]
[org.clojure/clojure "1.8.0"]
[zhang "0.1.0-SNAPSHOT"]]
:profiles {
:dev {
:dependencies [
[org.clojure/tools.namespace "0.2.11"]]
:source-paths ["dev-resources/src"]
:repl-options {:init-ns zhang.examples.dev}}
:test {
:test-selectors {
:default :unit
:unit :unit
:system :system
:integration :integration}
:plugins [
[lein-ancient "0.6.12"]
[jonase/eastwood "0.2.5"]
[lein-bikeshed "0.5.0"]
[lein-kibit "0.1.5"]
[venantius/yagni "0.1.4"]]}
:ubercompile {:aot :all}}
:aliases {
"check-deps"
["with-profile" "+test" "ancient" "check" ":all"]
"ubercompile"
["with-profile" "+ubercompile" "compile"]
"build"
["do" ["check"]
["check-deps"]
["ubercompile"]
["clean"]
["test"]
["uberjar"]]})