-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrebar.config
48 lines (42 loc) · 2.28 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
{lib_dirs, ["deps"]}. %%папка где лежат зависимости
{erl_opts, [
{parse_transform, lager_transform},
warnings_as_errors, debug_info]}.
{deps, [
%% =====================================================================================
%% Logging Framework
{lager, "2.0.0", {git, "https://github.com/basho/lager.git", {tag, "2.0.0"}}},
%% =====================================================================================
%% Postgresql Driver
{epgsql, ".*", {git, "https://github.com/wg/epgsql", "master"}},
%% =====================================================================================
%% Pool Manager
{poolboy, "1.2.1", {git, "https://github.com/devinus/poolboy/", "1.2.1"}},
%% =====================================================================================
%% Server Html Templates
%{erlydtl, ".*", {git, "https://github.com/evanmiller/erlydtl.git", "master"}},
%% =====================================================================================
%% Redis Client
%{eredis, ".*", {git, "[email protected]:erlang/eredis.git", "master"}},
%% =====================================================================================
%% Json Parser
{jsx, ".*", {git, "https://github.com/talentdeficit/jsx.git", "master"}},
%% =====================================================================================
%% Xml Parser
{exomler, ".*", {git, "https://github.com/vkletsko/exomler.git", "master"}},
%% =====================================================================================
%% Rabbit
%{rabbit_common, ".*", {git, "[email protected]:erlang/rabbit_common.git", {tag, "3.3.1"}}},
%{amqp_client, "3.3.1", {git, "[email protected]:erlang/amqp_client.git", {tag, "3.3.1"}}},
%% =====================================================================================
%% Web-Server
{cowboy, ".*", {git, "https://github.com/ninenines/cowboy.git", {tag, "1.0.0"}}}
]}.
{xref_checks, [undefined_function_calls]}.
{cover_enabled, true}.
{eunit_opts, [
verbose,
{report, {eunit_surefire, [{dir, "."}]}}
]
}.
{clean_files, ["deps", "ebin"]}.