-
Notifications
You must be signed in to change notification settings - Fork 2
/
rebar.config
62 lines (59 loc) · 1.38 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
58
59
60
61
62
{erl_opts, [debug_info]}.
{lib_dirs, ["deps"]}.
{clean_files, ["ebin", "doc"]}.
{cover_enabled, true}.
{cover_print_enabled, true}.
{deps,
[
{ pooler,
"1.3.3",
{git, "[email protected]:seth/pooler.git", {tag, "1.3.3"} }
},
{ poolboy,
"1.4.2",
{git, "[email protected]:devinus/poolboy.git", {tag, "1.4.2"} }
},
{ leo_pod,
"0.6.2",
{git, "[email protected]:leo-project/leo_pod.git", {tag, "0.6.2"} }
},
{ gproc,
".*",
{git, "[email protected]:uwiger/gproc.git", "uw-pool-fixes" }
},
{ dispcount,
"1.0.2",
{git, "[email protected]:ferd/dispcount.git", {tag, "1.0.2"} }
},
{ sidejob,
"2.0.0",
{git, "[email protected]:basho/sidejob.git", {tag, "2.0.0"} }
},
{ gen_server_pool,
"2.2.0",
{git, "git://github.com/openx/gen_server_pool.git", {tag, "2.2.0"} }
},
{ mochiweb,
"2.12.1",
{git, "[email protected]:mochi/mochiweb.git", {tag, "v2.12.1"} }
},
{ bear,
"0.8.2",
{git, "[email protected]:boundary/bear.git", {tag, "0.8.2"} }
}
% { pq,
% "3.2.3",
% {git, "[email protected]:fogfish/pq.git", master }
% },
% {
% episcina,
% "1.0.0",
% {git, "[email protected]:erlware/episcina", {tag, "v1.0.0"} }
% },
% {
% worker_pool,
% "1.0",
% {git, "[email protected]:tigertext/worker_pool", master }
% },
]
}.