This repository has been archived by the owner on Sep 27, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 96
/
rebar.config
60 lines (54 loc) · 2.27 KB
/
rebar.config
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
%% vim: set ts=2 sw=2 ft=erlang et:
{overrides,
[{override, ex_uri,
[{plugins, [rebar3_abnfc_plugin]},
{provider_hooks,
[{pre,
[{compile, {abnfc, compile}},
{clean, {abnfc, clean}}]}]}
]}
]}.
{erl_opts,
[debug_info,
{parse_transform, lager_transform}
]}.
{deps,
[{redis, {git, "https://github.com/heroku/redis_pool.git", {branch, "master"}}}
,{mochiweb, {git, "https://github.com/heroku/mochiweb.git", {tag, "R16B01"}}}
,{pagerduty, {git, "https://github.com/heroku/pagerduty.git", {branch, "master"}}}
,{redgrid, {git, "https://github.com/heroku/redgrid.git", {tag, "v1.0.4"}}}
,{redo, {git, "https://github.com/heroku/redo.git", {branch, "fix_erlang18_warnings"}}}
,{nsync, {git, "https://github.com/heroku/nsync.git", {branch, "OTP-17.4"}}}
,{cowboy, {git, "https://github.com/ninenines/cowboy.git", {tag, "1.0.1"}}}
,{quoted, {git, "https://github.com/pivotree/quoted.erl.git", {branch, "master"}}}
,{gproc, {git, "https://github.com/uwiger/gproc.git", {branch, "master"}}}
,{ex_uri, {git, "https://github.com/heroku/ex_uri.git", {branch, "master"}}}
,{heroku_crashdumps, {git, "https://github.com/heroku/heroku_crashdumps.git", {tag, "0.1.0"}}}
,{lager, {git, "https://github.com/basho/lager.git", {tag, "3.0.1"}}}
,{batchio, {git, "https://github.com/ferd/batchio.git", {tag, "1.0.0"}}}
,{recon, {git, "https://github.com/ferd/recon.git", {tag, "2.3.2"}}}
,{folsom, {git, "https://github.com/boundary/folsom.git", {tag, "0.8.2"}}}
,{jsx, {git, "https://github.com/talentdeficit/jsx.git", {branch, "master"}}}
,{folsom_cowboy, {git, "https://github.com/voidlock/folsom_cowboy.git", {branch, "folsom-compat"}}}
,{ssl_verify_hostname, {git, "https://github.com/deadtrickster/ssl_verify_hostname.erl.git", {tag, "1.0.5"}}}
,{erlang_syslog, {git, "https://github.com/heroku/erlang_syslog", {branch, "library"}}}
,{poolboy, "1.5.1"}
,{backoff, "1.1.6"}
,{observer_cli, "1.4.4"}
]}.
{ct_compile_opts,
[{i, "./include/"}]}.
{ct_opts,
[{alias, logplex, "./test/"},
{logdir, "./logs/"},
{suites, logplex, all}]}.
{profiles,
[{test,
[{deps, [{meck, {git, "https://github.com/eproxus/meck.git", {tag, "0.8.2"}}}]}]
},
{syslog,
[{erl_opts, [{d, 'LOG_TO_SYSLOG'}]}]
},
{production,
[{erl_opts, [{d, 'LOG_TO_SYSLOG'}]}]}]
}.