forked from ChicagoBoss/ChicagoBoss
-
Notifications
You must be signed in to change notification settings - Fork 0
/
rebar.config
56 lines (50 loc) · 3.24 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
%-*-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/ErlyORM/boss_db.git", {tag, "v0.8.16.1"}}},
{tinymq, ".*", {git, "git://github.com/ChicagoBoss/tinymq.git", {tag, "v0.8.15"}}},
{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
{erlydtl, ".*", {git, "git://github.com/erlydtl/erlydtl.git", {tag, "f8602ca664"}}},
{jaderl, ".*", {git, "git://github.com/erlydtl/jaderl.git", {tag, "14a80dafd"}}},
{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/ninenines/cowboy.git", {tag, "1.0.1"}}},
{iso8601, ".*", {git, "git://github.com/danikp/erlang_iso8601.git", {tag, "ae6a052017"}}}
%% 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.
%% 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.15"}}},
%{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]}.