From 67bee387b08695d764ba30c7b0a104d7f4d079be Mon Sep 17 00:00:00 2001 From: xdurvak Date: Thu, 29 Jun 2017 11:39:52 +0530 Subject: [PATCH] added copyright headers to the source code --- CHANGELOG.md | 3 +++ build.gradle | 16 +++++++++++++++- settings.gradle | 14 ++++++++++++++ .../eiffel/remrem/protocol/MsgService.java | 14 ++++++++++++++ .../eiffel/remrem/protocol/ValidationResult.java | 14 ++++++++++++++ 5 files changed, 60 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8c3b486..de66d10 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,2 +1,5 @@ +## 0.0.2 +- Added copyright headers to the source code. + ## 0.0.1 - Added diff --git a/build.gradle b/build.gradle index a104437..f1df73a 100644 --- a/build.gradle +++ b/build.gradle @@ -1,3 +1,17 @@ +/* + Copyright 2017 Ericsson AB. + For a full list of individual contributors, please see the commit history. + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +*/ buildscript { repositories { jcenter() @@ -20,7 +34,7 @@ apply plugin: 'eclipse' jar { baseName = 'remrem-protocol' - version = '0.0.1' + version = '0.0.2' } group 'com.ericsson.eiffel.remrem' diff --git a/settings.gradle b/settings.gradle index 0e5e9fc..6451339 100644 --- a/settings.gradle +++ b/settings.gradle @@ -1 +1,15 @@ +/* + Copyright 2017 Ericsson AB. + For a full list of individual contributors, please see the commit history. + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +*/ rootProject.name = 'remrem-protocol' diff --git a/src/main/java/com/ericsson/eiffel/remrem/protocol/MsgService.java b/src/main/java/com/ericsson/eiffel/remrem/protocol/MsgService.java index defde35..59664b5 100644 --- a/src/main/java/com/ericsson/eiffel/remrem/protocol/MsgService.java +++ b/src/main/java/com/ericsson/eiffel/remrem/protocol/MsgService.java @@ -1,3 +1,17 @@ +/* + Copyright 2017 Ericsson AB. + For a full list of individual contributors, please see the commit history. + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +*/ package com.ericsson.eiffel.remrem.protocol; import com.google.gson.JsonObject; diff --git a/src/main/java/com/ericsson/eiffel/remrem/protocol/ValidationResult.java b/src/main/java/com/ericsson/eiffel/remrem/protocol/ValidationResult.java index d6da497..a9f2b57 100644 --- a/src/main/java/com/ericsson/eiffel/remrem/protocol/ValidationResult.java +++ b/src/main/java/com/ericsson/eiffel/remrem/protocol/ValidationResult.java @@ -1,3 +1,17 @@ +/* + Copyright 2017 Ericsson AB. + For a full list of individual contributors, please see the commit history. + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +*/ package com.ericsson.eiffel.remrem.protocol; public class ValidationResult {