summaryrefslogtreecommitdiff
path: root/components/dlink/src/dlink.app.src
blob: 7dca4d553004605af09af9763f8ccb8723366ef5 (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
%% -*- erlang-indent-level: 4; indent-tabs-mode: nil -*-
%%
%% Copyright (C) 2014, Jaguar Land Rover
%%
%% This program is licensed under the terms and conditions of the
%% Mozilla Public License, version 2.0.  The full text of the
%% Mozilla Public License is at https://www.mozilla.org/MPL/2.0/
%%

{application, dlink,
 [{description, ""},
  {vsn, git},
  {registered, []},
  {applications, [
		  kernel,
		  stdlib,
		  rvi_common,
                  authorize,
                  service_edge,
                  service_discovery,
                  schedule
		 ]},
  {mod, {dlink_app, []}},
  {start_phases, [{announce, []}]},
  {env, [
	 {rvi_core_await, [{n,l,dlink}]}
	]}
 ]}.