-
Notifications
You must be signed in to change notification settings - Fork 3
/
depends.config
48 lines (45 loc) · 2.11 KB
/
depends.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
%%
%% NB: This custom rebar config is used when installing based on local deps.
%% Use this if you wish to get the latest build of each and build against
%% the local cache (see rebar's deps_dir documentation for details).
%% By not specifying any sub_dirs, we avoid building our own sources using
%% this configuration, which is the intended behaviour.
%% TODO: make this a bit more useful and specify the exact versions
%% we're intending to build against
{deps_dir, ["lib"]}.
{deps, [
{hamcrest, ".*",
{git, "https://github.com/hyperthunk/hamcrest-erlang.git", "master"}},
{retest, ".*",
{git, "https://github.com/hyperthunk/retest.git", "master"}},
{rebar_retest_plugin, ".*",
{git, "https://github.com/hyperthunk/rebar_retest_plugin.git", "master"}},
{rebar_dist_plugin, ".*",
{git, "https://github.com/hyperthunk/rebar_dist_plugin.git", {tag, "0.0.6"}}},
{appstart, ".*",
{git, "https://github.com/hyperthunk/appstart.git", "master"}},
%% NB: un-patched gen_server2, which is simply bundled as an OTP lib
{gen_server2, ".*",
{git, "https://github.com/hyperthunk/gen_server2.git", "master"}},
{parse_trans, ".*",
{git, "https://github.com/hyperthunk/parse_trans.git", "master"}},
{fastlog, ".*",
{git, "https://github.com/hyperthunk/fastlog.git", "master"}},
{fastlog_parse_trans, ".*",
{git, "https://github.com/hyperthunk/fastlog_parse_trans.git", "master"}},
{kvc, ".*",
{git, "https://github.com/etrepum/kvc.git", "master"}},
{erlydtl, ".*",
{git, "https://github.com/evanmiller/erlydtl.git", "master"}},
%% NB: I have patched eper to allow parameterised modules as consumers
{eper, ".*",
{git, "https://github.com/hyperthunk/eper.git", "master"}},
{misultin, "0.7*",
{git, "https://github.com/ostinelli/misultin.git", "master"}},
{jsx, ".*",
{git, "https://github.com/talentdeficit/jsx.git", "master"}},
{riak_err, ".*",
{git, "https://github.com/basho/riak_err.git", "master"}},
{setup, ".*",
{git, "https://github.com/esl/setup.git", "master"}}
]}.