You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@crail.apache.org by pe...@apache.org on 2018/10/18 10:49:44 UTC

incubator-crail git commit: Add missing license headers

Repository: incubator-crail
Updated Branches:
  refs/heads/master cef806a30 -> cc6d36835


Add missing license headers

Add missing license headers to docker files and exclude CREDITS file
from rat check.

https://jira.apache.org/jira/projects/CRAIL/issues/CRAIL-53

Signed-off-by: Jonas Pfefferle <pe...@apache.org>


Project: http://git-wip-us.apache.org/repos/asf/incubator-crail/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-crail/commit/cc6d3683
Tree: http://git-wip-us.apache.org/repos/asf/incubator-crail/tree/cc6d3683
Diff: http://git-wip-us.apache.org/repos/asf/incubator-crail/diff/cc6d3683

Branch: refs/heads/master
Commit: cc6d36835be3699ad84a3384b0c126a772c48bba
Parents: cef806a
Author: Jonas Pfefferle <pe...@apache.org>
Authored: Thu Oct 18 12:45:51 2018 +0200
Committer: Jonas Pfefferle <pe...@apache.org>
Committed: Thu Oct 18 12:45:51 2018 +0200

----------------------------------------------------------------------
 checkstyle.xml               | 17 +++++++++++++++++
 docker/crail-env.sh          | 17 +++++++++++++++++
 docker/start-crail-docker.sh | 15 +++++++++++++++
 pom.xml                      |  4 ++++
 4 files changed, 53 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-crail/blob/cc6d3683/checkstyle.xml
----------------------------------------------------------------------
diff --git a/checkstyle.xml b/checkstyle.xml
index 4fa2737..3747cbe 100644
--- a/checkstyle.xml
+++ b/checkstyle.xml
@@ -1,3 +1,20 @@
+<!--
+  ~
+  ~ Licensed to the Apache Software Foundation (ASF) under one or more
+  ~ contributor license agreements.  See the NOTICE file distributed with
+  ~ this work for additional information regarding copyright ownership.
+  ~ The ASF licenses this file to You 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.
+  -->
 <?xml version="1.0"?>
 <!DOCTYPE module PUBLIC
           "-//Puppy Crawl//DTD Check Configuration 1.3//EN"

http://git-wip-us.apache.org/repos/asf/incubator-crail/blob/cc6d3683/docker/crail-env.sh
----------------------------------------------------------------------
diff --git a/docker/crail-env.sh b/docker/crail-env.sh
index 1bfb348..d8788be 100644
--- a/docker/crail-env.sh
+++ b/docker/crail-env.sh
@@ -1,3 +1,20 @@
 #!/usr/bin/env bash
+
+# Licensed to the Apache Software Foundation (ASF) under one or more
+# contributor license agreements.  See the NOTICE file distributed with
+# this work for additional information regarding copyright ownership.
+# The ASF licenses this file to You 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.
+
+
 # This env varibale allows setting additional java parameter
 #CRAIL_EXTRA_JAVA_OPTIONS="-Xmx24G -Xmn16G"

http://git-wip-us.apache.org/repos/asf/incubator-crail/blob/cc6d3683/docker/start-crail-docker.sh
----------------------------------------------------------------------
diff --git a/docker/start-crail-docker.sh b/docker/start-crail-docker.sh
index 7a23db1..94558ce 100755
--- a/docker/start-crail-docker.sh
+++ b/docker/start-crail-docker.sh
@@ -1,5 +1,20 @@
 #!/bin/bash
 
+# Licensed to the Apache Software Foundation (ASF) under one or more
+# contributor license agreements.  See the NOTICE file distributed with
+# this work for additional information regarding copyright ownership.
+# The ASF licenses this file to You 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.
+
 # substitude env variables in core-site.xml
 envsubst < $CRAIL_HOME/conf/core-site.xml.env > $CRAIL_HOME/conf/core-site.xml
 

http://git-wip-us.apache.org/repos/asf/incubator-crail/blob/cc6d3683/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index 9551f41..bbe65da 100644
--- a/pom.xml
+++ b/pom.xml
@@ -123,6 +123,10 @@
             </licenses>
             <excludes>
                 <exclude>conf/**/*</exclude>
+                <exclude>doc/**/*</exclude>
+                <exclude>docker/crail-site.conf</exclude>
+                <exclude>docker/RDMA/crail-site.conf</exclude>
+                <exclude>CREDITS</exclude>
             </excludes>
         </configuration>
       </plugin>