-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproject.clj
37 lines (37 loc) · 1.79 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
(defproject test-automation "0.1.0-SNAPSHOT"
:description "automation of checks against our API"
:url "HIDDEN"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:dependencies [[org.clojure/clojure "1.7.0"]
[expectations "2.1.2"]
[cheshire "5.5.0"]
[clj-http "2.0.0"]
[clj-time "0.11.0"]
[prismatic/schema "1.0.1"]
[org.clojure/test.check "0.8.2"]
[com.rpl/specter "0.7.1"]
[slingshot "0.12.2"]
[environ "1.0.1"]
[zookeeper-clj "0.9.1"]]
:plugins [[lein-expectations "0.0.8"]
[lein-environ "1.0.1"]]
:main ^:skip-aot test-automation.core
:target-path "target/%s"
:profiles {:uberjar {:aot :all}
:integration {:env {:magine-env "HIDDEN"
:zookeeper-url "HIDDEN"
:memcache-url "HIDDEN"
:magine-secret-path "HIDDEN"}}
:production {:env {:magine-env "HIDDEN"
:zookeeper-url "HIDDEN"
:memcache-url "HIDDEN"
:magine-secret-path "HIDDEN"}}
:dev-int {:env {:magine-env "HIDDEN"
:zookeeper-url "HIDDEN"
:memcache-url "HIDDEN"
:magine-secret-path "HIDDEN"}}
:dev-prod {:env {:magine-env "HIDDEN"
:zookeeper-url "HIDDEN"
:memcache-url "HIDDEN"
:magine-secret-path "HIDDEN"}}})