forked from projectcs13/sensor-cloud
-
Notifications
You must be signed in to change notification settings - Fork 25
/
rebar.config
49 lines (40 loc) · 1.83 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
%%-*- mode: erlang -*-
%% Specify library paths
{lib_dirs, ["lib"]}.
%% Edoc options
{edoc_opts, [{packages, false},{private, true}]}.
%% Eunit options
%% Checks coverage of unit tests
{cover_enabled, true}.
{eunit_opts, [verbose,
{report, {eunit_surefire, [{dir, "."}]}}
]}.
%% Erlang compiler options
{erl_opts, [debug_info,
verbose,
%% strong_validation,
return,
warn_export_all,
%% This is needed because there are files in src/ that includes a file from here
%% If header files from other libraries needs to be included, then the path to that include
%% included below (as a separate {i, Dir} entry)
{i, "include/"},
{i, "lib/erlastic_search/include/"},
{i, "lib/erlson/include/"},
{i, "lib/rabbitmq-erlang-client/include/"},
{i, "lib/webmachine/include/"},
{src_dirs, ["src","test"]},
{d, debug}
]}.
{deps_dir, ["lib"]}.
{deps, [
{webmachine, "", {git, "https://github.com/basho/webmachine", e0c1cbe128cd010c9069852f70ff97534349c7f2}},
{erlastic_search, ".*", {git, "https://github.com/EricssonResearch/erlastic_search.git", {branch, "master"}}},
{"rabbitmq-server", ".*", {git, "git://github.com/rabbitmq/rabbitmq-server.git", {tag, "rabbitmq_v3_2_4"}}, [raw]},
{"rabbitmq-codegen", ".*", {git, "git://github.com/rabbitmq/rabbitmq-codegen.git", {tag, "rabbitmq_v3_2_4"}}, [raw]},
{"rabbitmq-erlang-client", ".*", {git, "git://github.com/rabbitmq/rabbitmq-erlang-client.git", {tag, "rabbitmq_v3_2_4"}}, [raw]},
{rErlang, ".*", {git, "git://github.com/projectcs13/rErlang.git", {branch, "master"}}, [raw]},
{erlson, "", {git, "https://github.com/projectcs13/erlson.git", d0f5a48020f3e7dfa73f6b374722577681f4947f}},
{mochijson2, "", {git, "https://github.com/bjnortier/mochijson2.git", {branch, "master"}}}
]}.
{plugins, [erlson_rebar_plugin]}. % for newer rebar