summaryrefslogtreecommitdiff
path: root/rebar.config
blob: ccdb50f0eff14191125a9159f2a0d1cf4ee3e366 (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
26
27
28
29
30
31
32
%% -*- erlang -*-

%%
%% Top level app that controls other apps.
%%
{erl_opts, [debug_info]}.
{lib_dirs, [ "deps", "components" ]}.
{sub_dirs, ["rel",
	    "components/rvi_common",
	    "components/authorize",
	    "components/data_link_bert_rpc",
	    "components/protocol",
	    "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"}},
  %% GBS cannot clone the git@github.com:tonyrog/uart.git references
  %% GBS cannot clone the git@github.com:tonyrog/uart.git and
  %% git@github.com:tonyrog/dthread.git and references
  %% given in gsms/rebar.config and uart/rebar.config, so
  %% we'll specify them with a working reference here instead.
  {dthread, ".*", {git, "https://github.com/tonyrog/dthread.git", "HEAD"}},
  {uart, ".*", {git, "https://github.com/tonyrog/uart.git", "HEAD"}},
  {gsms, ".*", {git, "https://github.com/tonyrog/gsms.git", "HEAD"}},
  {wse, ".*", {git, "https://github.com/tonyrog/wse.git", "HEAD"}}
 ]}.