-
Notifications
You must be signed in to change notification settings - Fork 138
/
Copy pathrebar.config
33 lines (29 loc) · 1.74 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
%-*-Erlang-*-
{erl_opts, [debug_info,
{parse_transform, lager_transform},
{parse_transform, cut},
{parse_transform, do},
{parse_transform, import_as}
]}.
{deps, [
{lager, ".*", {git, "git://github.com/basho/lager.git", {tag, "2.0.2"}}},
{erlando, ".*", {git, "git://github.com/travelping/erlando.git", "HEAD"}},
{aleppo, ".*", {git, "git://github.com/ChicagoBoss/aleppo.git", {tag, "bef139e4c7"}}},
{bson, ".*", {git, "git://github.com/mongodb/bson-erlang.git", {tag, "6d3cc910ea"}}},
{ddb, ".*", {git, "git://github.com/Concurix/ddb.git", {tag, "HEAD"}}},
{epgsql, ".*", {git, "git://github.com/mabrek/epgsql.git", {tag, "7b6c71e"}}},
{erlmc, ".*", {git, "git://github.com/bipthelin/erlmc.git", {tag, "HEAD"}}},
{medici, ".*", {git, "git://github.com/ChicagoBoss/medici.git", {branch, "rebarify"}}},
{mongodb, ".*", {git, "git://github.com/ChicagoBoss/mongodb-erlang.git", {tag, "ce9bf77902"}}},
{mysql, ".*", {git, "git://github.com/dizzyd/erlang-mysql-driver.git", {tag, "16cae84b5e"}}},
{poolboy, ".*", {git, "git://github.com/devinus/poolboy.git", {tag, "1.0.0"}}},
{riakc, ".*", {git, "git://github.com/basho/riak-erlang-client", {tag, "1.3.0"}}},
{tiny_pq, ".*", {git, "git://github.com/ChicagoBoss/tiny_pq", {tag, "HEAD"}}},
{uuid, ".*", {git, "git://gitorious.org/avtobiff/erlang-uuid.git", "master"}},
{redo, ".*", {git, "git://github.com/JacobVorreuter/redo.git", "HEAD"}},
{ets_cache, ".*", {git, "git://github.com/cuongth/ets_cache.git", {branch, "boss_branch"}}},
{proper, ".*", {git, "git://github.com/manopapad/proper.git", "HEAD"}},
{dh_date, ".*", {git, "git@github.com:zotonic/dh_date.git", "HEAD"}}
]}.
{cover_enabled, true}.
{plugins, [rebar_ct]}.