-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathrebar.config
More file actions
25 lines (22 loc) · 1 KB
/
rebar.config
File metadata and controls
25 lines (22 loc) · 1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
%%-*- mode: erlang -*-
{recursive_cmds, [clean, compile]}.
{erl_opts, [{parse_transform, lager_transform},
debug_info,
warnings_as_errors]}.
{cover_enabled, true}.
{edoc_opts, [{preprocess, true}]}.
{deps, [
{lager, "2.0.*",
{git, "git://github.com/basho/lager", {tag, "2.0.3"}}},
{poolboy, "1.*", {git, "git://github.com/devinus/poolboy", {branch, "master"}}},
{epgsql, ".*", {git, "git://github.com/epgsql/epgsql", {tag, "f060df99c6c99fcd41dc57c106fae9de69d6f9ad"}}},
{webmachine, ".*",
{git, "git://github.com/basho/webmachine", {branch, "develop"}}},
{kvc, "1.4.0", {git, "https://github.com/etrepum/kvc", {tag, "v1.4.0"}}},
{erlcloud, ".*",
{git, "git://github.com/basho/erlcloud", "e4e2f1e"}},
{getopt, "0.8.2",
{git, "git://github.com/jcomellas/getopt", {tag, "v0.8.2"}}}
]}.
{escript_name, "giddyup-cover"}.
{escript_incl_apps, [goldrush, lager, mochiweb, ibrowse, kvc, erlcloud, getopt]}.