forked from ChicagoBoss/ChicagoBoss
-
Notifications
You must be signed in to change notification settings - Fork 0
/
rebar.config
57 lines (51 loc) · 3.37 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
%-*-Erlang-*-
% vim: ft=erlang
{erl_opts, [debug_info,
{parse_transform, lager_transform},
{parse_transform, cut},
{parse_transform, do},
{parse_transform, import_as}
]}.
{template_dir, "."}.
{deps, [
%% maintained by CB team
{boss_db, ".*", {git, "git://github.com/ChicagoBoss/boss_db.git", {tag, "v0.8.13"}}},
{tinymq, ".*", {git, "git://github.com/ChicagoBoss/tinymq.git", {tag, "v0.1.1"}}},
{mochicow, ".*", {git, "git://github.com/ChicagoBoss/mochicow.git", {branch, "r16-compat"}}},
%% WARNING: Do not add cb_admin dependency here, otherwise you'll
%% encounter a dependency loop with rebar. cb_admin should be added to
%% YOUR APPS's rebar.config
%% maintained by others
%% Update erlydtl to 0.10.0 when out
{erlydtl, ".*", {git, "git://github.com/erlydtl/erlydtl.git", {tag, "b9ec861c2"}}},
{jaderl, ".*", {git, "git://github.com/erlydtl/jaderl.git", {tag, "14a80dafd"}}},
%% Uncomment the follwing line if you have Erlang R16B and want Elixir support
%{elixir, ".*", {git, "git://github.com/elixir-lang/elixir.git", {tag, "v0.13.1"}}},
%% Then copy priv/elixir to src/ in this directory, run "mix deps.get", and recompile
%% See README_ELIXIR for more details.
{lfe, ".*", {git, "git://github.com/rvirding/lfe.git", {tag, "fb7c96eb17"}}},
{gen_smtp, ".*", {git, "git://github.com/Vagabond/gen_smtp.git", {tag, "fd0426c464"}}},
{mochiweb, ".*", {git, "git://github.com/mochi/mochiweb.git", {tag, "v2.7.0"}}},
{simple_bridge, ".*", {git, "git://github.com/nitrogen/simple_bridge.git", {tag, "v1.4.1"}}},
{cowboy, ".*", {git, "git://github.com/extend/cowboy.git", {tag, "0.9.0"}}},
{iso8601, ".*", {git, "git://github.com/tsloughter/erlang_iso8601.git", {tag, "504f37716"}}}
%% The following apps are dependencies that are already brought in by
%% boss_db being a dependency, but are still used by ChicagoBoss directly.
%% Listed here just for just as an FYI:
%{tiny_pq, ".*", {git, "git://github.com/ChicagoBoss/tiny_pq.git", {tag, "v0.8.9"}}},
%{poolboy, ".*", {git, "git://github.com/devinus/poolboy.git", {tag, "64e1eaef0b"}}},
%{proper, ".*", {git, "git://github.com/manopapad/proper.git", {tag, "d90fc40579"}}},
%{lager, ".*", {git, "git://github.com/basho/lager.git", {tag, "2.0.3"}}},
%{erlando, ".*", {git, "git://github.com/travelping/erlando.git", {tag, "23d678c97"}}},
]}.
{erlydtl_opts, [
{doc_root, "src/boss"},
{out_dir, "ebin"},
{source_ext, ".dtl"},
{module_ext, ""},
{compiler_options, [debug_info]},
report, return
]}.
{lib_dirs, ["deps/elixir/lib", "deps"]}.
{cover_enabled, true}.
{plugins, [rebar_ct]}.