summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMagnus <mfeuer@jaguarlandrover.com>2014-07-26 15:39:01 -0700
committerMagnus <mfeuer@jaguarlandrover.com>2014-07-26 15:39:01 -0700
commit99b6ed2ab4008f7ade7079054b4bac2f4c42d2c5 (patch)
tree085eac029ba974ceba4a962c0fcbf71abedfd73f
parentdb63795114903f01da6584f02a7e910bfe56e9bf (diff)
downloadrvi_core-99b6ed2ab4008f7ade7079054b4bac2f4c42d2c5.tar.gz
Added JLR copyright.
Signed-off-by: Magnus <mfeuer@jaguarlandrover.com>
-rw-r--r--src/service_discovery.app.src9
-rw-r--r--src/service_discovery_app.erl9
-rw-r--r--src/service_discovery_lib.erl9
-rw-r--r--src/service_discovery_rpc.erl9
-rw-r--r--src/service_discovery_sup.erl9
5 files changed, 45 insertions, 0 deletions
diff --git a/src/service_discovery.app.src b/src/service_discovery.app.src
index 92037b9..6d41bb4 100644
--- a/src/service_discovery.app.src
+++ b/src/service_discovery.app.src
@@ -1,3 +1,12 @@
+%%
+%% 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/
+%%
+
+
%% -*- erlang -*-
{application, service_discovery,
[
diff --git a/src/service_discovery_app.erl b/src/service_discovery_app.erl
index f8523d1..4741709 100644
--- a/src/service_discovery_app.erl
+++ b/src/service_discovery_app.erl
@@ -1,3 +1,12 @@
+%%
+%% 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/
+%%
+
+
-module(service_discovery_app).
-behaviour(application).
diff --git a/src/service_discovery_lib.erl b/src/service_discovery_lib.erl
index c09bdf1..eb797cc 100644
--- a/src/service_discovery_lib.erl
+++ b/src/service_discovery_lib.erl
@@ -1,3 +1,12 @@
+%%
+%% 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/
+%%
+
+
-module(service_discovery_lib).
-export([timestamp/0,
diff --git a/src/service_discovery_rpc.erl b/src/service_discovery_rpc.erl
index e08c2c3..066091e 100644
--- a/src/service_discovery_rpc.erl
+++ b/src/service_discovery_rpc.erl
@@ -1,3 +1,12 @@
+%%
+%% 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/
+%%
+
+
-module(service_discovery_rpc).
-export([handle_rpc/2]).
diff --git a/src/service_discovery_sup.erl b/src/service_discovery_sup.erl
index 30bd866..d71004e 100644
--- a/src/service_discovery_sup.erl
+++ b/src/service_discovery_sup.erl
@@ -1,3 +1,12 @@
+%%
+%% 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/
+%%
+
+
-module(service_discovery_sup).
-behaviour(supervisor).