summaryrefslogtreecommitdiff
path: root/rebar.config
blob: 29b794154690acc27ee4187779466798129b95f1 (plain)
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
%% -*- erlang -*-

%%
%% Top level app that controls other apps.
%%
{erl_opts, [debug_info]}.
{lib_dirs, [ "deps", "components" ]}.
{sub_dirs, ["rel",
	    "components/authorize",
	    "components/data_link_bert_rpc",
	    "components/protocol",
	    "components/rvi_common",
	    "components/schedule",
	    "components/service_discovery/",
	    "components/service_edge"
]}.
{deps,
 [
  {lager, ".*", {git, "git://github.com/Feuerlabs/lager.git", "1.1"}},
  {exo,  ".*", {git, "git://github.com/Feuerlabs/exo.git",  "1.2"}},
  {setup, ".*", {git, "https://github.com/uwiger/setup.git", "HEAD"}},
  {resource, ".*", {git, "https://github.com/tonyrog/resource.git", "HEAD"}},
  {gsms, ".*", {git, "https://github.com/tonyrog/gsms.git", "HEAD"}},
  {wse, ".*", {git, "https://github.com/tonyrog/wse.git", "HEAD"}}
 ]}.