summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJan Lehnardt <jan@apache.org>2013-10-07 17:18:52 +0200
committerJan Lehnardt <jan@apache.org>2013-10-07 17:18:52 +0200
commit18d5fd67c0c047bfc439c614eca6a94092d20b1b (patch)
tree3202dbdaaa935edd55f2df421dd96370192858f2
parentdb743ae66957294d4eb1e6d3b972463da00c1501 (diff)
downloadcouchdb-18d5fd67c0c047bfc439c614eca6a94092d20b1b.tar.gz
[my-first-couchdb-plugin] use Apache 2 License
-rw-r--r--license.skip6
-rw-r--r--src/my-first-couchdb-plugin/src/my_first_couchdb_plugin.app.src12
-rw-r--r--src/my-first-couchdb-plugin/src/my_first_couchdb_plugin.erl12
3 files changed, 29 insertions, 1 deletions
diff --git a/license.skip b/license.skip
index 686e0323e..3321a6d7b 100644
--- a/license.skip
+++ b/license.skip
@@ -137,7 +137,11 @@
^src/fauxton/app/addons/permissions/assets/less/permissions.less
^src/ibrowse/.*
^src/mochiweb/.*
-^src/my-first-couchdb-plugin/.*
+^src/my-first-couchdb-plugin/priv/*/*
+^src/my-first-couchdb-plugin/README.md
+^src/my-first-couchdb-plugin/.gitignore
+^src/my-first-couchdb-plugin/Makefile
+^src/my-first-couchdb-plugin/Makefile.in
^src/snappy/.*
^stamp-h1
^test/Makefile
diff --git a/src/my-first-couchdb-plugin/src/my_first_couchdb_plugin.app.src b/src/my-first-couchdb-plugin/src/my_first_couchdb_plugin.app.src
index 01ce89756..9a24bf8e6 100644
--- a/src/my-first-couchdb-plugin/src/my_first_couchdb_plugin.app.src
+++ b/src/my-first-couchdb-plugin/src/my_first_couchdb_plugin.app.src
@@ -1,3 +1,15 @@
+% 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.
+
%% -*- mode: erlang -*-
{application, my_first_couchdb_plugin, [
{description, "My First CouchDB Plugin"},
diff --git a/src/my-first-couchdb-plugin/src/my_first_couchdb_plugin.erl b/src/my-first-couchdb-plugin/src/my_first_couchdb_plugin.erl
index b1bdd04bc..64d728c5b 100644
--- a/src/my-first-couchdb-plugin/src/my_first_couchdb_plugin.erl
+++ b/src/my-first-couchdb-plugin/src/my_first_couchdb_plugin.erl
@@ -1,3 +1,15 @@
+% 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.
+
-module(my_first_couchdb_plugin).
-export([my_func/0]).