-
Notifications
You must be signed in to change notification settings - Fork 1
/
rebar.config
37 lines (36 loc) · 1.69 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
%% -*- erlang -*-
%% ExoDM
{erl_opts, [debug_info, {parse_transform, lager_transform}]}.
{sub_dirs, ["rel",
"lib/exodm_setup",
"lib/exodm_http",
"lib/exodm_db",
"lib/exodm_rpc"
]}.
{deps,
[
{lager, ".*", {git, "[email protected]:basho/lager.git", "3.0.1"}}
, {ale, ".*", {git, "[email protected]:Feuerlabs/ale.git", "HEAD"}}
, {setup, ".*", {git, "git://github.com/uwiger/setup.git", "1.2.9"}}
, {enet, ".*", {git, "[email protected]:Feuerlabs/enet.git", "0.3"}}
, {parse_trans, ".*", {git, "git://github.com/uwiger/parse_trans.git", "2.6"}}
, {gproc, ".*", {git, "git://github.com/uwiger/gproc.git", "0.2.17"}}
, {jobs, ".*", {git, "git://github.com/uwiger/jobs.git", "0.2.7"}}
, {yaws, ".*", {git, "git://github.com/Feuerlabs/yaws.git", "1.98.fl.2"}}
, {lhttpc, ".*", {git, "git://github.com/Feuerlabs/lhttpc.git", "1.2.6.fl.6"}}
, {bcrypt, ".*", {git, "git://github.com/Feuerlabs/erlang-bcrypt.git",
"0.5.0.fl.3"}}
, {exo, ".*", {git, "[email protected]:Feuerlabs/exo.git", "1.3"}}
, {exosense_specs, ".*", {git, "[email protected]:Feuerlabs/exosense_specs.git",
"0.7.3"}}
, {exodm_plugin, ".*", {git, "[email protected]:Feuerlabs/exodm_plugin.git",
"0.6"}}
, {exometer, ".*", {git, "[email protected]:Feuerlabs/exometer.git",
{branch, "master"}}}
, {yang, ".*", {git, "[email protected]:Feuerlabs/yang.git", "1.1"}}
, {bert, ".*", {git, "[email protected]:Feuerlabs/bert.git", "1.3"}}
, {reactor, ".*", {git, "[email protected]:Feuerlabs/reactor.git", "0.2"}}
, {eleveldb, ".*", {git, "git://github.com/basho/eleveldb.git", "2.0.0pre1"}}
, {kvdb, ".*", {git, "[email protected]:Feuerlabs/kvdb.git", "1.4.5"}}
]}.
%% {escript_name, "lib/exodm_db/src/provision_device"}.