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/04/18 12:29:20 UTC

[1/7] incubator-crail git commit: Add missing license headers

Repository: incubator-crail
Updated Branches:
  refs/heads/master 9f5cfd333 -> bccfbf848


Add missing license headers

https://issues.apache.org/jira/browse/CRAIL-25

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/823535ca
Tree: http://git-wip-us.apache.org/repos/asf/incubator-crail/tree/823535ca
Diff: http://git-wip-us.apache.org/repos/asf/incubator-crail/diff/823535ca

Branch: refs/heads/master
Commit: 823535ca90ee7938fa7b6a0024e97cf88cea5eaa
Parents: 9f5cfd3
Author: Jonas Pfefferle <pe...@apache.org>
Authored: Fri Apr 13 10:52:48 2018 +0200
Committer: Jonas Pfefferle <pe...@apache.org>
Committed: Fri Apr 13 10:52:48 2018 +0200

----------------------------------------------------------------------
 AUTHORS                                          |  1 -
 assembly/src/main/assembly/assembly.xml          | 18 ++++++++++++++++++
 client/pom.xml                                   | 18 ++++++++++++++++++
 .../java/org/apache/crail/CrailBufferCache.java  | 19 +++++++++++++++++++
 hdfs/pom.xml                                     | 18 ++++++++++++++++++
 namenode/pom.xml                                 | 18 ++++++++++++++++++
 pom.xml                                          | 18 ++++++++++++++++++
 rpc-darpc/pom.xml                                | 18 ++++++++++++++++++
 rpc-narpc/pom.xml                                | 18 ++++++++++++++++++
 rpc-narpc/src/main/assembly/assembly.xml         | 18 ++++++++++++++++++
 rpc/pom.xml                                      | 18 ++++++++++++++++++
 storage-narpc/pom.xml                            | 18 ++++++++++++++++++
 storage-narpc/src/main/assembly/assembly.xml     | 19 +++++++++++++++++++
 storage-nvmf/pom.xml                             | 18 ++++++++++++++++++
 .../nvmf/client/NvmfStagingBufferCacheTest.java  | 19 +++++++++++++++++++
 storage-rdma/pom.xml                             | 18 ++++++++++++++++++
 storage/pom.xml                                  | 18 ++++++++++++++++++
 17 files changed, 291 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-crail/blob/823535ca/AUTHORS
----------------------------------------------------------------------
diff --git a/AUTHORS b/AUTHORS
deleted file mode 100644
index d86fd74..0000000
--- a/AUTHORS
+++ /dev/null
@@ -1 +0,0 @@
-Patrick Stuedi <st...@zurich.ibm.com>

http://git-wip-us.apache.org/repos/asf/incubator-crail/blob/823535ca/assembly/src/main/assembly/assembly.xml
----------------------------------------------------------------------
diff --git a/assembly/src/main/assembly/assembly.xml b/assembly/src/main/assembly/assembly.xml
index e364a9f..725584a 100644
--- a/assembly/src/main/assembly/assembly.xml
+++ b/assembly/src/main/assembly/assembly.xml
@@ -1,3 +1,21 @@
+<!--
+  ~ Copyright (C) 2018, IBM Corporation
+  ~
+  ~ 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.
+  -->
 <assembly xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.3"
   xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
   xsi:schemaLocation="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.3 http://maven.apache.org/xsd/assembly-1.1.3.xsd">

http://git-wip-us.apache.org/repos/asf/incubator-crail/blob/823535ca/client/pom.xml
----------------------------------------------------------------------
diff --git a/client/pom.xml b/client/pom.xml
index d0fbd77..302830f 100644
--- a/client/pom.xml
+++ b/client/pom.xml
@@ -1,3 +1,21 @@
+<!--
+  ~ Copyright (C) 2018, IBM Corporation
+  ~
+  ~ 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.
+  -->
 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
   xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
   <modelVersion>4.0.0</modelVersion>

http://git-wip-us.apache.org/repos/asf/incubator-crail/blob/823535ca/client/src/main/java/org/apache/crail/CrailBufferCache.java
----------------------------------------------------------------------
diff --git a/client/src/main/java/org/apache/crail/CrailBufferCache.java b/client/src/main/java/org/apache/crail/CrailBufferCache.java
index ca9d6d9..270187c 100644
--- a/client/src/main/java/org/apache/crail/CrailBufferCache.java
+++ b/client/src/main/java/org/apache/crail/CrailBufferCache.java
@@ -1,3 +1,22 @@
+/*
+ * Copyright (C) 2018, IBM Corporation
+ *
+ * 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.
+ */
+
 package org.apache.crail;
 
 public interface CrailBufferCache {

http://git-wip-us.apache.org/repos/asf/incubator-crail/blob/823535ca/hdfs/pom.xml
----------------------------------------------------------------------
diff --git a/hdfs/pom.xml b/hdfs/pom.xml
index 0ab9c12..ba406e6 100644
--- a/hdfs/pom.xml
+++ b/hdfs/pom.xml
@@ -1,3 +1,21 @@
+<!--
+  ~ Copyright (C) 2018, IBM Corporation
+  ~
+  ~ 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.
+  -->
 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
   xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
   <modelVersion>4.0.0</modelVersion>

http://git-wip-us.apache.org/repos/asf/incubator-crail/blob/823535ca/namenode/pom.xml
----------------------------------------------------------------------
diff --git a/namenode/pom.xml b/namenode/pom.xml
index cd4e4ff..a79d137 100644
--- a/namenode/pom.xml
+++ b/namenode/pom.xml
@@ -1,3 +1,21 @@
+<!--
+  ~ Copyright (C) 2018, IBM Corporation
+  ~
+  ~ 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.
+  -->
 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
   xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
   <modelVersion>4.0.0</modelVersion>

http://git-wip-us.apache.org/repos/asf/incubator-crail/blob/823535ca/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index be92aa5..949b7e3 100644
--- a/pom.xml
+++ b/pom.xml
@@ -1,3 +1,21 @@
+<!--
+  ~ Copyright (C) 2018, IBM Corporation
+  ~
+  ~ 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.
+  -->
 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
   xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
   <modelVersion>4.0.0</modelVersion>

http://git-wip-us.apache.org/repos/asf/incubator-crail/blob/823535ca/rpc-darpc/pom.xml
----------------------------------------------------------------------
diff --git a/rpc-darpc/pom.xml b/rpc-darpc/pom.xml
index 7f6d86b..ecec05e 100644
--- a/rpc-darpc/pom.xml
+++ b/rpc-darpc/pom.xml
@@ -1,3 +1,21 @@
+<!--
+  ~ Copyright (C) 2018, IBM Corporation
+  ~
+  ~ 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.
+  -->
 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
   xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
   <modelVersion>4.0.0</modelVersion>

http://git-wip-us.apache.org/repos/asf/incubator-crail/blob/823535ca/rpc-narpc/pom.xml
----------------------------------------------------------------------
diff --git a/rpc-narpc/pom.xml b/rpc-narpc/pom.xml
index fa24292..6bcc861 100644
--- a/rpc-narpc/pom.xml
+++ b/rpc-narpc/pom.xml
@@ -1,3 +1,21 @@
+<!--
+  ~ Copyright (C) 2018, IBM Corporation
+  ~
+  ~ 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.
+  -->
 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
   xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
   <modelVersion>4.0.0</modelVersion>

http://git-wip-us.apache.org/repos/asf/incubator-crail/blob/823535ca/rpc-narpc/src/main/assembly/assembly.xml
----------------------------------------------------------------------
diff --git a/rpc-narpc/src/main/assembly/assembly.xml b/rpc-narpc/src/main/assembly/assembly.xml
index bc06f97..2e2a8d8 100644
--- a/rpc-narpc/src/main/assembly/assembly.xml
+++ b/rpc-narpc/src/main/assembly/assembly.xml
@@ -1,3 +1,21 @@
+<!--
+  ~ Copyright (C) 2018, IBM Corporation
+  ~
+  ~ 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.
+  -->
 <assembly xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.3"
           xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
           xsi:schemaLocation="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.3 http://maven.apache.org/xsd/assembly-1.1.3.xsd">

http://git-wip-us.apache.org/repos/asf/incubator-crail/blob/823535ca/rpc/pom.xml
----------------------------------------------------------------------
diff --git a/rpc/pom.xml b/rpc/pom.xml
index 9bf92af..2e4d278 100644
--- a/rpc/pom.xml
+++ b/rpc/pom.xml
@@ -1,3 +1,21 @@
+<!--
+  ~ Copyright (C) 2018, IBM Corporation
+  ~
+  ~ 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.
+  -->
 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
   xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
   <modelVersion>4.0.0</modelVersion>

http://git-wip-us.apache.org/repos/asf/incubator-crail/blob/823535ca/storage-narpc/pom.xml
----------------------------------------------------------------------
diff --git a/storage-narpc/pom.xml b/storage-narpc/pom.xml
index d97355d..51b11b1 100644
--- a/storage-narpc/pom.xml
+++ b/storage-narpc/pom.xml
@@ -1,3 +1,21 @@
+<!--
+  ~ Copyright (C) 2018, IBM Corporation
+  ~
+  ~ 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.
+  -->
 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
   xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
   <modelVersion>4.0.0</modelVersion>

http://git-wip-us.apache.org/repos/asf/incubator-crail/blob/823535ca/storage-narpc/src/main/assembly/assembly.xml
----------------------------------------------------------------------
diff --git a/storage-narpc/src/main/assembly/assembly.xml b/storage-narpc/src/main/assembly/assembly.xml
index bc06f97..8a2f74d 100644
--- a/storage-narpc/src/main/assembly/assembly.xml
+++ b/storage-narpc/src/main/assembly/assembly.xml
@@ -1,3 +1,22 @@
+<!--
+  ~ Copyright (C) 2018, IBM Corporation
+  ~
+  ~ 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.
+  -->
+
 <assembly xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.3"
           xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
           xsi:schemaLocation="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.3 http://maven.apache.org/xsd/assembly-1.1.3.xsd">

http://git-wip-us.apache.org/repos/asf/incubator-crail/blob/823535ca/storage-nvmf/pom.xml
----------------------------------------------------------------------
diff --git a/storage-nvmf/pom.xml b/storage-nvmf/pom.xml
index 2a0db6c..c3b4cb7 100644
--- a/storage-nvmf/pom.xml
+++ b/storage-nvmf/pom.xml
@@ -1,3 +1,21 @@
+<!--
+  ~ Copyright (C) 2018, IBM Corporation
+  ~
+  ~ 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.
+  -->
 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
   xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
   <modelVersion>4.0.0</modelVersion>

http://git-wip-us.apache.org/repos/asf/incubator-crail/blob/823535ca/storage-nvmf/src/test/java/org/apache/crail/storage/nvmf/client/NvmfStagingBufferCacheTest.java
----------------------------------------------------------------------
diff --git a/storage-nvmf/src/test/java/org/apache/crail/storage/nvmf/client/NvmfStagingBufferCacheTest.java b/storage-nvmf/src/test/java/org/apache/crail/storage/nvmf/client/NvmfStagingBufferCacheTest.java
index 9d4d7bf..6ff8ea0 100644
--- a/storage-nvmf/src/test/java/org/apache/crail/storage/nvmf/client/NvmfStagingBufferCacheTest.java
+++ b/storage-nvmf/src/test/java/org/apache/crail/storage/nvmf/client/NvmfStagingBufferCacheTest.java
@@ -1,3 +1,22 @@
+/*
+ * Copyright (C) 2018, IBM Corporation
+ *
+ * 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.
+ */
+
 package org.apache.crail.storage.nvmf.client;
 
 import org.apache.crail.CrailBuffer;

http://git-wip-us.apache.org/repos/asf/incubator-crail/blob/823535ca/storage-rdma/pom.xml
----------------------------------------------------------------------
diff --git a/storage-rdma/pom.xml b/storage-rdma/pom.xml
index 6239a1c..e43b75d 100644
--- a/storage-rdma/pom.xml
+++ b/storage-rdma/pom.xml
@@ -1,3 +1,21 @@
+<!--
+  ~ Copyright (C) 2018, IBM Corporation
+  ~
+  ~ 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.
+  -->
 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
   xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
   <modelVersion>4.0.0</modelVersion>

http://git-wip-us.apache.org/repos/asf/incubator-crail/blob/823535ca/storage/pom.xml
----------------------------------------------------------------------
diff --git a/storage/pom.xml b/storage/pom.xml
index e4d5f56..0a4b63c 100644
--- a/storage/pom.xml
+++ b/storage/pom.xml
@@ -1,3 +1,21 @@
+<!--
+  ~ Copyright (C) 2018, IBM Corporation
+  ~
+  ~ 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.
+  -->
 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
   xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
   <modelVersion>4.0.0</modelVersion>


[6/7] incubator-crail git commit: Add license header to md files

Posted by pe...@apache.org.
Add license header to md files

Add license header to md files and remove exclude from rat.

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/841b033d
Tree: http://git-wip-us.apache.org/repos/asf/incubator-crail/tree/841b033d
Diff: http://git-wip-us.apache.org/repos/asf/incubator-crail/diff/841b033d

Branch: refs/heads/master
Commit: 841b033dcb0f6eefaa410b798c3d35dd4be2bebf
Parents: cebc1c3
Author: Jonas Pfefferle <pe...@apache.org>
Authored: Mon Apr 16 17:37:16 2018 +0200
Committer: Jonas Pfefferle <pe...@apache.org>
Committed: Mon Apr 16 17:37:16 2018 +0200

----------------------------------------------------------------------
 HISTORY.md | 21 ++++++++++++++++++++-
 README.md  | 19 +++++++++++++++++++
 pom.xml    |  1 -
 3 files changed, 39 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-crail/blob/841b033d/HISTORY.md
----------------------------------------------------------------------
diff --git a/HISTORY.md b/HISTORY.md
index 90e4358..7442b28 100644
--- a/HISTORY.md
+++ b/HISTORY.md
@@ -1,3 +1,22 @@
+<!--
+{% comment %}
+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.
+{% endcomment %}
+-->
+
 ## [1.0](https://github.com/apache/incubator-crail/tree/v1.0) - 12.04.2018
 
 This is our first Apache incubator release. Below are new features and bug fixes since the import to Apache.
@@ -14,4 +33,4 @@ This is our first Apache incubator release. Below are new features and bug fixes
 
 * [[CRAIL-3](https://issues.apache.org/jira/projects/CRAIL/issues/CRAIL-3)] Directory index lost when writing
 * [[CRAIL-4](https://issues.apache.org/jira/projects/CRAIL/issues/CRAIL-4)] getLong and getShort functions on the CrailBufferInputStream return double
-* [[CRAIL-8](https://issues.apache.org/jira/projects/CRAIL/issues/CRAIL-8)] Make sure DataNodeInfo.key is invalidated on object updates
\ No newline at end of file
+* [[CRAIL-8](https://issues.apache.org/jira/projects/CRAIL/issues/CRAIL-8)] Make sure DataNodeInfo.key is invalidated on object updates

http://git-wip-us.apache.org/repos/asf/incubator-crail/blob/841b033d/README.md
----------------------------------------------------------------------
diff --git a/README.md b/README.md
index 48cae6d..ac16194 100644
--- a/README.md
+++ b/README.md
@@ -1,3 +1,22 @@
+<!--
+{% comment %}
+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.
+{% endcomment %}
+-->
+
 # Crail
 
 Crail is a fast multi-tiered distributed storage system designed from ground up for high-performance network and storage hardware. It marks the backbone of the Crail I/O architecture, which is described in more detail on [crail.incubator.apache.org](http://crail.incubator.apache.org). The unique features of Crail include:

http://git-wip-us.apache.org/repos/asf/incubator-crail/blob/841b033d/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index 54914ea..ac5c2f3 100644
--- a/pom.xml
+++ b/pom.xml
@@ -111,7 +111,6 @@
             </licenses>
             <excludes>
                 <exclude>conf/**/*</exclude>
-                <exclude>**/*.md</exclude>
             </excludes>
         </configuration>
       </plugin>


[3/7] incubator-crail git commit: Fix LICENSE file

Posted by pe...@apache.org.
Fix LICENSE file

LICENSE file should only include licenses that we use.
Now only includes Apache License 2.0

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/e7d48520
Tree: http://git-wip-us.apache.org/repos/asf/incubator-crail/tree/e7d48520
Diff: http://git-wip-us.apache.org/repos/asf/incubator-crail/diff/e7d48520

Branch: refs/heads/master
Commit: e7d485207fec1d595c2c7196f50ada094cde2772
Parents: 7c57006
Author: Jonas Pfefferle <pe...@apache.org>
Authored: Fri Apr 13 10:56:04 2018 +0200
Committer: Jonas Pfefferle <pe...@apache.org>
Committed: Fri Apr 13 10:56:04 2018 +0200

----------------------------------------------------------------------
 LICENSE | 659 +----------------------------------------------------------
 1 file changed, 1 insertion(+), 658 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-crail/blob/e7d48520/LICENSE
----------------------------------------------------------------------
diff --git a/LICENSE b/LICENSE
index 9b364a4..7a4a3ea 100644
--- a/LICENSE
+++ b/LICENSE
@@ -199,661 +199,4 @@
    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.
-
-
-=======================================================================
-Apache Spark Subcomponents:
-
-The Apache Spark project contains subcomponents with separate copyright
-notices and license terms. Your use of the source code for the these
-subcomponents is subject to the terms and conditions of the following
-licenses.
-
-
-=======================================================================
-For the Boto EC2 library (ec2/third_party/boto*.zip):
-=======================================================================
-
-Copyright (c) 2006-2008 Mitch Garnaat http://garnaat.org/
-
-Permission is hereby granted, free of charge, to any person obtaining a
-copy of this software and associated documentation files (the
-"Software"), to deal in the Software without restriction, including
-without limitation the rights to use, copy, modify, merge, publish, dis-
-tribute, sublicense, and/or sell copies of the Software, and to permit
-persons to whom the Software is furnished to do so, subject to the fol-
-lowing conditions:
-
-The above copyright notice and this permission notice shall be included
-in all copies or substantial portions of the Software.
-
-THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
-OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABIL-
-ITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT
-SHALL THE AUTHOR BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, 
-WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
-OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
-IN THE SOFTWARE.
-
-
-========================================================================
-For CloudPickle (pyspark/cloudpickle.py):
-========================================================================
-
-Copyright (c) 2012, Regents of the University of California.
-Copyright (c) 2009 `PiCloud, Inc. <http://www.picloud.com>`_.
-All rights reserved.
-
-Redistribution and use in source and binary forms, with or without
-modification, are permitted provided that the following conditions
-are met:
-    * Redistributions of source code must retain the above copyright
-      notice, this list of conditions and the following disclaimer.
-    * Redistributions in binary form must reproduce the above copyright
-      notice, this list of conditions and the following disclaimer in the
-      documentation and/or other materials provided with the distribution.
-    * Neither the name of the University of California, Berkeley nor the
-      names of its contributors may be used to endorse or promote
-      products derived from this software without specific prior written
-      permission.
-
-THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
-"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
-LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
-A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
-HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
-SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED
-TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
-PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
-LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
-NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
-SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-
-
-========================================================================
-For Py4J (python/lib/py4j-0.8.2.1-src.zip)
-========================================================================
-
-Copyright (c) 2009-2011, Barthelemy Dagenais All rights reserved.
-
-Redistribution and use in source and binary forms, with or without
-modification, are permitted provided that the following conditions are met:
-
-- Redistributions of source code must retain the above copyright notice, this
-list of conditions and the following disclaimer.
-
-- Redistributions in binary form must reproduce the above copyright notice,
-this list of conditions and the following disclaimer in the documentation
-and/or other materials provided with the distribution.
-
-- The name of the author may not be used to endorse or promote products
-derived from this software without specific prior written permission.
-
-THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
-AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
-IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
-ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
-LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
-CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
-SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
-INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
-CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
-ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
-POSSIBILITY OF SUCH DAMAGE.
-
-
-========================================================================
-For DPark join code (python/pyspark/join.py):
-========================================================================
-
-Copyright (c) 2011, Douban Inc. <http://www.douban.com/>
-All rights reserved.
-
-Redistribution and use in source and binary forms, with or without
-modification, are permitted provided that the following conditions are
-met:
-
-    * Redistributions of source code must retain the above copyright
-notice, this list of conditions and the following disclaimer.
-
-    * Redistributions in binary form must reproduce the above
-copyright notice, this list of conditions and the following disclaimer
-in the documentation and/or other materials provided with the
-distribution.
-
-    * Neither the name of the Douban Inc. nor the names of its
-contributors may be used to endorse or promote products derived from
-this software without specific prior written permission.
-
-THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
-"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
-LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
-A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
-OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
-SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
-LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
-DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
-THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
-OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-
-========================================================================
-For heapq (pyspark/heapq3.py):
-========================================================================
-
-# A. HISTORY OF THE SOFTWARE
-# ==========================
-#
-# Python was created in the early 1990s by Guido van Rossum at Stichting
-# Mathematisch Centrum (CWI, see http://www.cwi.nl) in the Netherlands
-# as a successor of a language called ABC.  Guido remains Python's
-# principal author, although it includes many contributions from others.
-#
-# In 1995, Guido continued his work on Python at the Corporation for
-#     National Research Initiatives (CNRI, see http://www.cnri.reston.va.us)
-# in Reston, Virginia where he released several versions of the
-# software.
-#
-# In May 2000, Guido and the Python core development team moved to
-# BeOpen.com to form the BeOpen PythonLabs team.  In October of the same
-# year, the PythonLabs team moved to Digital Creations (now Zope
-# Corporation, see http://www.zope.com).  In 2001, the Python Software
-# Foundation (PSF, see http://www.python.org/psf/) was formed, a
-# non-profit organization created specifically to own Python-related
-# Intellectual Property.  Zope Corporation is a sponsoring member of
-# the PSF.
-#
-# All Python releases are Open Source (see http://www.opensource.org for
-# the Open Source Definition).  Historically, most, but not all, Python
-# releases have also been GPL-compatible; the table below summarizes
-# the various releases.
-#
-# Release         Derived     Year        Owner       GPL-
-# from                                compatible? (1)
-#
-# 0.9.0 thru 1.2              1991-1995   CWI         yes
-# 1.3 thru 1.5.2  1.2         1995-1999   CNRI        yes
-# 1.6             1.5.2       2000        CNRI        no
-# 2.0             1.6         2000        BeOpen.com  no
-# 1.6.1           1.6         2001        CNRI        yes (2)
-# 2.1             2.0+1.6.1   2001        PSF         no
-# 2.0.1           2.0+1.6.1   2001        PSF         yes
-# 2.1.1           2.1+2.0.1   2001        PSF         yes
-# 2.2             2.1.1       2001        PSF         yes
-# 2.1.2           2.1.1       2002        PSF         yes
-# 2.1.3           2.1.2       2002        PSF         yes
-# 2.2.1           2.2         2002        PSF         yes
-# 2.2.2           2.2.1       2002        PSF         yes
-# 2.2.3           2.2.2       2003        PSF         yes
-# 2.3             2.2.2       2002-2003   PSF         yes
-# 2.3.1           2.3         2002-2003   PSF         yes
-# 2.3.2           2.3.1       2002-2003   PSF         yes
-# 2.3.3           2.3.2       2002-2003   PSF         yes
-# 2.3.4           2.3.3       2004        PSF         yes
-# 2.3.5           2.3.4       2005        PSF         yes
-# 2.4             2.3         2004        PSF         yes
-# 2.4.1           2.4         2005        PSF         yes
-# 2.4.2           2.4.1       2005        PSF         yes
-# 2.4.3           2.4.2       2006        PSF         yes
-# 2.4.4           2.4.3       2006        PSF         yes
-# 2.5             2.4         2006        PSF         yes
-# 2.5.1           2.5         2007        PSF         yes
-# 2.5.2           2.5.1       2008        PSF         yes
-# 2.5.3           2.5.2       2008        PSF         yes
-# 2.6             2.5         2008        PSF         yes
-# 2.6.1           2.6         2008        PSF         yes
-# 2.6.2           2.6.1       2009        PSF         yes
-# 2.6.3           2.6.2       2009        PSF         yes
-# 2.6.4           2.6.3       2009        PSF         yes
-# 2.6.5           2.6.4       2010        PSF         yes
-# 2.7             2.6         2010        PSF         yes
-#
-# Footnotes:
-#
-# (1) GPL-compatible doesn't mean that we're distributing Python under
-# the GPL.  All Python licenses, unlike the GPL, let you distribute
-# a modified version without making your changes open source.  The
-# GPL-compatible licenses make it possible to combine Python with
-#     other software that is released under the GPL; the others don't.
-#
-# (2) According to Richard Stallman, 1.6.1 is not GPL-compatible,
-# because its license has a choice of law clause.  According to
-# CNRI, however, Stallman's lawyer has told CNRI's lawyer that 1.6.1
-# is "not incompatible" with the GPL.
-#
-# Thanks to the many outside volunteers who have worked under Guido's
-# direction to make these releases possible.
-#
-#
-# B. TERMS AND CONDITIONS FOR ACCESSING OR OTHERWISE USING PYTHON
-# ===============================================================
-#
-# PYTHON SOFTWARE FOUNDATION LICENSE VERSION 2
-# --------------------------------------------
-#
-# 1. This LICENSE AGREEMENT is between the Python Software Foundation
-# ("PSF"), and the Individual or Organization ("Licensee") accessing and
-# otherwise using this software ("Python") in source or binary form and
-# its associated documentation.
-#
-# 2. Subject to the terms and conditions of this License Agreement, PSF hereby
-# grants Licensee a nonexclusive, royalty-free, world-wide license to reproduce,
-# analyze, test, perform and/or display publicly, prepare derivative works,
-# distribute, and otherwise use Python alone or in any derivative version,
-# provided, however, that PSF's License Agreement and PSF's notice of copyright,
-# i.e., "Copyright (c) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010,
-# 2011, 2012, 2013 Python Software Foundation; All Rights Reserved" are retained
-# in Python alone or in any derivative version prepared by Licensee.
-#
-# 3. In the event Licensee prepares a derivative work that is based on
-# or incorporates Python or any part thereof, and wants to make
-# the derivative work available to others as provided herein, then
-# Licensee hereby agrees to include in any such work a brief summary of
-# the changes made to Python.
-#
-# 4. PSF is making Python available to Licensee on an "AS IS"
-# basis.  PSF MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR
-# IMPLIED.  BY WAY OF EXAMPLE, BUT NOT LIMITATION, PSF MAKES NO AND
-# DISCLAIMS ANY REPRESENTATION OR WARRANTY OF MERCHANTABILITY OR FITNESS
-# FOR ANY PARTICULAR PURPOSE OR THAT THE USE OF PYTHON WILL NOT
-# INFRINGE ANY THIRD PARTY RIGHTS.
-#
-# 5. PSF SHALL NOT BE LIABLE TO LICENSEE OR ANY OTHER USERS OF PYTHON
-# FOR ANY INCIDENTAL, SPECIAL, OR CONSEQUENTIAL DAMAGES OR LOSS AS
-# A RESULT OF MODIFYING, DISTRIBUTING, OR OTHERWISE USING PYTHON,
-# OR ANY DERIVATIVE THEREOF, EVEN IF ADVISED OF THE POSSIBILITY THEREOF.
-#
-# 6. This License Agreement will automatically terminate upon a material
-# breach of its terms and conditions.
-#
-# 7. Nothing in this License Agreement shall be deemed to create any
-# relationship of agency, partnership, or joint venture between PSF and
-# Licensee.  This License Agreement does not grant permission to use PSF
-# trademarks or trade name in a trademark sense to endorse or promote
-# products or services of Licensee, or any third party.
-#
-# 8. By copying, installing or otherwise using Python, Licensee
-# agrees to be bound by the terms and conditions of this License
-# Agreement.
-#
-#
-# BEOPEN.COM LICENSE AGREEMENT FOR PYTHON 2.0
-# -------------------------------------------
-#
-# BEOPEN PYTHON OPEN SOURCE LICENSE AGREEMENT VERSION 1
-#
-# 1. This LICENSE AGREEMENT is between BeOpen.com ("BeOpen"), having an
-# office at 160 Saratoga Avenue, Santa Clara, CA 95051, and the
-# Individual or Organization ("Licensee") accessing and otherwise using
-# this software in source or binary form and its associated
-# documentation ("the Software").
-#
-# 2. Subject to the terms and conditions of this BeOpen Python License
-# Agreement, BeOpen hereby grants Licensee a non-exclusive,
-# royalty-free, world-wide license to reproduce, analyze, test, perform
-# and/or display publicly, prepare derivative works, distribute, and
-# otherwise use the Software alone or in any derivative version,
-# provided, however, that the BeOpen Python License is retained in the
-# Software, alone or in any derivative version prepared by Licensee.
-#
-# 3. BeOpen is making the Software available to Licensee on an "AS IS"
-# basis.  BEOPEN MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR
-# IMPLIED.  BY WAY OF EXAMPLE, BUT NOT LIMITATION, BEOPEN MAKES NO AND
-# DISCLAIMS ANY REPRESENTATION OR WARRANTY OF MERCHANTABILITY OR FITNESS
-# FOR ANY PARTICULAR PURPOSE OR THAT THE USE OF THE SOFTWARE WILL NOT
-# INFRINGE ANY THIRD PARTY RIGHTS.
-#
-# 4. BEOPEN SHALL NOT BE LIABLE TO LICENSEE OR ANY OTHER USERS OF THE
-# SOFTWARE FOR ANY INCIDENTAL, SPECIAL, OR CONSEQUENTIAL DAMAGES OR LOSS
-# AS A RESULT OF USING, MODIFYING OR DISTRIBUTING THE SOFTWARE, OR ANY
-# DERIVATIVE THEREOF, EVEN IF ADVISED OF THE POSSIBILITY THEREOF.
-#
-# 5. This License Agreement will automatically terminate upon a material
-# breach of its terms and conditions.
-#
-# 6. This License Agreement shall be governed by and interpreted in all
-# respects by the law of the State of California, excluding conflict of
-# law provisions.  Nothing in this License Agreement shall be deemed to
-# create any relationship of agency, partnership, or joint venture
-# between BeOpen and Licensee.  This License Agreement does not grant
-# permission to use BeOpen trademarks or trade names in a trademark
-# sense to endorse or promote products or services of Licensee, or any
-# third party.  As an exception, the "BeOpen Python" logos available at
-# http://www.pythonlabs.com/logos.html may be used according to the
-# permissions granted on that web page.
-#
-# 7. By copying, installing or otherwise using the software, Licensee
-# agrees to be bound by the terms and conditions of this License
-# Agreement.
-#
-#
-# CNRI LICENSE AGREEMENT FOR PYTHON 1.6.1
-# ---------------------------------------
-#
-# 1. This LICENSE AGREEMENT is between the Corporation for National
-#     Research Initiatives, having an office at 1895 Preston White Drive,
-# Reston, VA 20191 ("CNRI"), and the Individual or Organization
-# ("Licensee") accessing and otherwise using Python 1.6.1 software in
-# source or binary form and its associated documentation.
-#
-# 2. Subject to the terms and conditions of this License Agreement, CNRI
-# hereby grants Licensee a nonexclusive, royalty-free, world-wide
-# license to reproduce, analyze, test, perform and/or display publicly,
-# prepare derivative works, distribute, and otherwise use Python 1.6.1
-# alone or in any derivative version, provided, however, that CNRI's
-# License Agreement and CNRI's notice of copyright, i.e., "Copyright (c)
-# 1995-2001 Corporation for National Research Initiatives; All Rights
-# Reserved" are retained in Python 1.6.1 alone or in any derivative
-# version prepared by Licensee.  Alternately, in lieu of CNRI's License
-# Agreement, Licensee may substitute the following text (omitting the
-# quotes): "Python 1.6.1 is made available subject to the terms and
-# conditions in CNRI's License Agreement.  This Agreement together with
-# Python 1.6.1 may be located on the Internet using the following
-# unique, persistent identifier (known as a handle): 1895.22/1013.  This
-# Agreement may also be obtained from a proxy server on the Internet
-# using the following URL: http://hdl.handle.net/1895.22/1013".
-#
-# 3. In the event Licensee prepares a derivative work that is based on
-# or incorporates Python 1.6.1 or any part thereof, and wants to make
-# the derivative work available to others as provided herein, then
-# Licensee hereby agrees to include in any such work a brief summary of
-# the changes made to Python 1.6.1.
-#
-# 4. CNRI is making Python 1.6.1 available to Licensee on an "AS IS"
-# basis.  CNRI MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR
-# IMPLIED.  BY WAY OF EXAMPLE, BUT NOT LIMITATION, CNRI MAKES NO AND
-# DISCLAIMS ANY REPRESENTATION OR WARRANTY OF MERCHANTABILITY OR FITNESS
-# FOR ANY PARTICULAR PURPOSE OR THAT THE USE OF PYTHON 1.6.1 WILL NOT
-# INFRINGE ANY THIRD PARTY RIGHTS.
-#
-# 5. CNRI SHALL NOT BE LIABLE TO LICENSEE OR ANY OTHER USERS OF PYTHON
-# 1.6.1 FOR ANY INCIDENTAL, SPECIAL, OR CONSEQUENTIAL DAMAGES OR LOSS AS
-# A RESULT OF MODIFYING, DISTRIBUTING, OR OTHERWISE USING PYTHON 1.6.1,
-# OR ANY DERIVATIVE THEREOF, EVEN IF ADVISED OF THE POSSIBILITY THEREOF.
-#
-# 6. This License Agreement will automatically terminate upon a material
-# breach of its terms and conditions.
-#
-# 7. This License Agreement shall be governed by the federal
-# intellectual property law of the United States, including without
-# limitation the federal copyright law, and, to the extent such
-# U.S. federal law does not apply, by the law of the Commonwealth of
-# Virginia, excluding Virginia's conflict of law provisions.
-# Notwithstanding the foregoing, with regard to derivative works based
-# on Python 1.6.1 that incorporate non-separable material that was
-# previously distributed under the GNU General Public License (GPL), the
-# law of the Commonwealth of Virginia shall govern this License
-# Agreement only as to issues arising under or with respect to
-# Paragraphs 4, 5, and 7 of this License Agreement.  Nothing in this
-# License Agreement shall be deemed to create any relationship of
-# agency, partnership, or joint venture between CNRI and Licensee.  This
-# License Agreement does not grant permission to use CNRI trademarks or
-# trade name in a trademark sense to endorse or promote products or
-# services of Licensee, or any third party.
-#
-# 8. By clicking on the "ACCEPT" button where indicated, or by copying,
-# installing or otherwise using Python 1.6.1, Licensee agrees to be
-# bound by the terms and conditions of this License Agreement.
-#
-# ACCEPT
-#
-#
-# CWI LICENSE AGREEMENT FOR PYTHON 0.9.0 THROUGH 1.2
-# --------------------------------------------------
-#
-# Copyright (c) 1991 - 1995, Stichting Mathematisch Centrum Amsterdam,
-# The Netherlands.  All rights reserved.
-#
-# Permission to use, copy, modify, and distribute this software and its
-# documentation for any purpose and without fee is hereby granted,
-# provided that the above copyright notice appear in all copies and that
-# both that copyright notice and this permission notice appear in
-# supporting documentation, and that the name of Stichting Mathematisch
-# Centrum or CWI not be used in advertising or publicity pertaining to
-# distribution of the software without specific, written prior
-# permission.
-#
-# STICHTING MATHEMATISCH CENTRUM DISCLAIMS ALL WARRANTIES WITH REGARD TO
-# THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
-# FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH CENTRUM BE LIABLE
-# FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
-# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
-# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT
-# OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
-
-========================================================================
-For sorttable (core/src/main/resources/org/apache/spark/ui/static/sorttable.js):
-========================================================================
-
-Copyright (c) 1997-2007 Stuart Langridge
-
-Permission is hereby granted, free of charge, to any person obtaining a copy
-of this software and associated documentation files (the "Software"), to deal
-in the Software without restriction, including without limitation the rights
-to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
-copies of the Software, and to permit persons to whom the Software is
-furnished to do so, subject to the following conditions:
-
-THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
-IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
-FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
-AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
-LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
-OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
-THE SOFTWARE.
-
-
-========================================================================
-For Scala Interpreter classes (all .scala files in repl/src/main/scala
-except for Main.Scala, SparkHelper.scala and ExecutorClassLoader.scala),
-and for SerializableMapWrapper in JavaUtils.scala:
-========================================================================
-
-Copyright (c) 2002-2013 EPFL
-Copyright (c) 2011-2013 Typesafe, Inc.
-
-All rights reserved.
-
-Redistribution and use in source and binary forms, with or without
-modification, are permitted provided that the following conditions are met:
-
-- Redistributions of source code must retain the above copyright notice,
-  this list of conditions and the following disclaimer.
-
-- Redistributions in binary form must reproduce the above copyright notice,
-  this list of conditions and the following disclaimer in the documentation
-  and/or other materials provided with the distribution.
-
-- Neither the name of the EPFL nor the names of its contributors may be
-  used to endorse or promote products derived from this software without
-  specific prior written permission.
-
-THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
-AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
-IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
-ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
-LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
-CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
-SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
-INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
-CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
-ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
-POSSIBILITY OF SUCH DAMAGE.
-
-
-========================================================================
-For sbt and sbt-launch-lib.bash in sbt/:
-========================================================================
-
-// Generated from http://www.opensource.org/licenses/bsd-license.php
-Copyright (c) 2011, Paul Phillips.
-All rights reserved.
-
-Redistribution and use in source and binary forms, with or without
-modification, are permitted provided that the following conditions are met:
-
-    * Redistributions of source code must retain the above copyright notice,
-      this list of conditions and the following disclaimer.
-    * Redistributions in binary form must reproduce the above copyright notice,
-      this list of conditions and the following disclaimer in the documentation
-      and/or other materials provided with the distribution.
-    * Neither the name of the author nor the names of its contributors may be
-      used to endorse or promote products derived from this software without
-      specific prior written permission.
-
-THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
-AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
-IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
-ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
-LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
-DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
-LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
-THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
-NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
-EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-
-========================================================================
-For SnapTree:
-========================================================================
-
-SNAPTREE LICENSE
-
-Copyright (c) 2009-2012 Stanford University, unless otherwise specified.
-All rights reserved.
-
-This software was developed by the Pervasive Parallelism Laboratory of
-Stanford University, California, USA.
-
-Permission to use, copy, modify, and distribute this software in source
-or binary form for any purpose with or without fee is hereby granted,
-provided that the following conditions are met:
-
-   1. Redistributions of source code must retain the above copyright
-      notice, this list of conditions and the following disclaimer.
-
-   2. Redistributions in binary form must reproduce the above copyright
-      notice, this list of conditions and the following disclaimer in the
-      documentation and/or other materials provided with the distribution.
-
-   3. Neither the name of Stanford University nor the names of its
-      contributors may be used to endorse or promote products derived
-      from this software without specific prior written permission.
-
-
-THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
-ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
-IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
-ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
-FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
-DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
-SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
-CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
-LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
-OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
-SUCH DAMAGE.
-
-
-========================================================================
-For Timsort (core/src/main/java/org/apache/spark/util/collection/TimSort.java):
-========================================================================
-Copyright (C) 2008 The Android Open Source Project
-
-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.
-
-========================================================================
-For TestTimSort (core/src/test/java/org/apache/spark/util/collection/TestTimSort.java):
-========================================================================
-Copyright (C) 2015 Stijn de Gouw
-
-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.
-
-========================================================================
-For LimitedInputStream
-  (network/common/src/main/java/org/apache/spark/network/util/LimitedInputStream.java):
-========================================================================
-Copyright (C) 2007 The Guava Authors
-
-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.
-
-
-========================================================================
-BSD-style licenses
-========================================================================
-
-The following components are provided under a BSD-style license. See project link for details.
-
-     (BSD 3 Clause) core (com.github.fommil.netlib:core:1.1.2 - https://github.com/fommil/netlib-java/core)
-     (BSD 3-clause style license) jblas (org.jblas:jblas:1.2.3 - http://jblas.org/)
-     (BSD License) AntLR Parser Generator (antlr:antlr:2.7.7 - http://www.antlr.org/)
-     (BSD License) Javolution (javolution:javolution:5.5.1 - http://javolution.org)
-     (BSD licence) ANTLR ST4 4.0.4 (org.antlr:ST4:4.0.4 - http://www.stringtemplate.org)
-     (BSD licence) ANTLR StringTemplate (org.antlr:stringtemplate:3.2.1 - http://www.stringtemplate.org)
-     (BSD style) Hamcrest Core (org.hamcrest:hamcrest-core:1.1 - no url defined)
-     (BSD) JLine (jline:jline:0.9.94 - http://jline.sourceforge.net)
-     (BSD) ParaNamer Core (com.thoughtworks.paranamer:paranamer:2.3 - http://paranamer.codehaus.org/paranamer)
-     (BSD) ParaNamer Core (com.thoughtworks.paranamer:paranamer:2.6 - http://paranamer.codehaus.org/paranamer)
-     (BSD-like) (The BSD License) jline (org.scala-lang:jline:2.10.4 - http://www.scala-lang.org/)
-     (BSD-like) Scala Actors library (org.scala-lang:scala-actors:2.10.4 - http://www.scala-lang.org/)
-     (BSD-like) Scala Compiler (org.scala-lang:scala-compiler:2.10.4 - http://www.scala-lang.org/)
-     (BSD-like) Scala Compiler (org.scala-lang:scala-reflect:2.10.4 - http://www.scala-lang.org/)
-     (BSD-like) Scala Library (org.scala-lang:scala-library:2.10.4 - http://www.scala-lang.org/)
-     (BSD-like) Scalap (org.scala-lang:scalap:2.10.4 - http://www.scala-lang.org/)
-     (BSD-style) scalacheck (org.scalacheck:scalacheck_2.10:1.10.0 - http://www.scalacheck.org)
-     (BSD-style) spire (org.spire-math:spire_2.10:0.7.1 - http://spire-math.org)
-     (BSD-style) spire-macros (org.spire-math:spire-macros_2.10:0.7.1 - http://spire-math.org)
-     (New BSD License) Kryo (com.esotericsoftware.kryo:kryo:2.21 - http://code.google.com/p/kryo/)
-     (New BSD License) MinLog (com.esotericsoftware.minlog:minlog:1.2 - http://code.google.com/p/minlog/)
-     (New BSD License) ReflectASM (com.esotericsoftware.reflectasm:reflectasm:1.07 - http://code.google.com/p/reflectasm/)
-     (New BSD license) Protocol Buffer Java API (com.google.protobuf:protobuf-java:2.5.0 - http://code.google.com/p/protobuf)
-     (New BSD license) Protocol Buffer Java API (org.spark-project.protobuf:protobuf-java:2.4.1-shaded - http://code.google.com/p/protobuf)
-     (The BSD License) Fortran to Java ARPACK (net.sourceforge.f2j:arpack_combined_all:0.1 - http://f2j.sourceforge.net)
-     (The BSD License) xmlenc Library (xmlenc:xmlenc:0.52 - http://xmlenc.sourceforge.net)
-     (The New BSD License) Py4J (net.sf.py4j:py4j:0.8.2.1 - http://py4j.sourceforge.net/)
-     (Two-clause BSD-style license) JUnit-Interface (com.novocode:junit-interface:0.10 - http://github.com/szeiger/junit-interface/)
-     (ISC/BSD License) jbcrypt (org.mindrot:jbcrypt:0.3m - http://www.mindrot.org/)
-
-========================================================================
-MIT licenses
-========================================================================
-
-The following components are provided under the MIT License. See project link for details.
-
-     (MIT License) JCL 1.1.1 implemented over SLF4J (org.slf4j:jcl-over-slf4j:1.7.5 - http://www.slf4j.org)
-     (MIT License) JUL to SLF4J bridge (org.slf4j:jul-to-slf4j:1.7.5 - http://www.slf4j.org)
-     (MIT License) SLF4J API Module (org.slf4j:slf4j-api:1.7.5 - http://www.slf4j.org)
-     (MIT License) SLF4J LOG4J-12 Binding (org.slf4j:slf4j-log4j12:1.7.5 - http://www.slf4j.org)
-     (MIT License) pyrolite (org.spark-project:pyrolite:2.0.1 - http://pythonhosted.org/Pyro4/)
-     (MIT License) scopt (com.github.scopt:scopt_2.10:3.2.0 - https://github.com/scopt/scopt)
-     (The MIT License) Mockito (org.mockito:mockito-all:1.8.5 - http://www.mockito.org)
-     (MIT License) jquery (https://jquery.org/license/)
+   limitations under the License.
\ No newline at end of file


[7/7] incubator-crail git commit: Move release date in HISTORY

Posted by pe...@apache.org.
Move release date in HISTORY

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/bccfbf84
Tree: http://git-wip-us.apache.org/repos/asf/incubator-crail/tree/bccfbf84
Diff: http://git-wip-us.apache.org/repos/asf/incubator-crail/diff/bccfbf84

Branch: refs/heads/master
Commit: bccfbf8483188df8fe32ae2f7539c5560e84e167
Parents: 841b033
Author: Jonas Pfefferle <pe...@apache.org>
Authored: Wed Apr 18 09:45:15 2018 +0200
Committer: Jonas Pfefferle <pe...@apache.org>
Committed: Wed Apr 18 09:45:15 2018 +0200

----------------------------------------------------------------------
 HISTORY.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-crail/blob/bccfbf84/HISTORY.md
----------------------------------------------------------------------
diff --git a/HISTORY.md b/HISTORY.md
index 7442b28..a7ffc93 100644
--- a/HISTORY.md
+++ b/HISTORY.md
@@ -17,7 +17,7 @@ limitations under the License.
 {% endcomment %}
 -->
 
-## [1.0](https://github.com/apache/incubator-crail/tree/v1.0) - 12.04.2018
+## [1.0](https://github.com/apache/incubator-crail/tree/v1.0) - 23.04.2018
 
 This is our first Apache incubator release. Below are new features and bug fixes since the import to Apache.
 


[5/7] incubator-crail git commit: Move copyright notice to NOTICE file.

Posted by pe...@apache.org.
Move copyright notice to NOTICE file.

Remove copyright notice from license headers and move it
to NOTICE file.

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/cebc1c3d
Tree: http://git-wip-us.apache.org/repos/asf/incubator-crail/tree/cebc1c3d
Diff: http://git-wip-us.apache.org/repos/asf/incubator-crail/diff/cebc1c3d

Branch: refs/heads/master
Commit: cebc1c3dd256c9cc70da40fba403868bec239935
Parents: e7d4852
Author: Jonas Pfefferle <pe...@apache.org>
Authored: Mon Apr 16 17:31:10 2018 +0200
Committer: Jonas Pfefferle <pe...@apache.org>
Committed: Mon Apr 16 17:32:05 2018 +0200

----------------------------------------------------------------------
 NOTICE                                                           | 4 ++++
 assembly/src/main/assembly/assembly.xml                          | 1 -
 client/pom.xml                                                   | 1 -
 client/src/main/java/org/apache/crail/CrailBlockLocation.java    | 1 -
 client/src/main/java/org/apache/crail/CrailBuffer.java           | 1 -
 client/src/main/java/org/apache/crail/CrailBufferCache.java      | 1 -
 .../src/main/java/org/apache/crail/CrailBufferedInputStream.java | 1 -
 .../main/java/org/apache/crail/CrailBufferedOutputStream.java    | 1 -
 .../src/main/java/org/apache/crail/CrailBufferedStatistics.java  | 1 -
 client/src/main/java/org/apache/crail/CrailContainer.java        | 1 -
 client/src/main/java/org/apache/crail/CrailDirectory.java        | 1 -
 client/src/main/java/org/apache/crail/CrailFile.java             | 1 -
 client/src/main/java/org/apache/crail/CrailInputStream.java      | 1 -
 client/src/main/java/org/apache/crail/CrailKeyValue.java         | 1 -
 client/src/main/java/org/apache/crail/CrailLocationClass.java    | 1 -
 client/src/main/java/org/apache/crail/CrailMultiFile.java        | 1 -
 client/src/main/java/org/apache/crail/CrailNode.java             | 1 -
 client/src/main/java/org/apache/crail/CrailNodeType.java         | 1 -
 client/src/main/java/org/apache/crail/CrailOutputStream.java     | 1 -
 client/src/main/java/org/apache/crail/CrailPurgeOperation.java   | 1 -
 client/src/main/java/org/apache/crail/CrailResult.java           | 1 -
 client/src/main/java/org/apache/crail/CrailStatistics.java       | 1 -
 client/src/main/java/org/apache/crail/CrailStorageClass.java     | 1 -
 client/src/main/java/org/apache/crail/CrailStore.java            | 1 -
 client/src/main/java/org/apache/crail/CrailTable.java            | 1 -
 .../src/main/java/org/apache/crail/FileBufferedInputStream.java  | 1 -
 .../main/java/org/apache/crail/MultiFileBufferedInputStream.java | 1 -
 client/src/main/java/org/apache/crail/Upcoming.java              | 1 -
 client/src/main/java/org/apache/crail/conf/Configurable.java     | 1 -
 .../src/main/java/org/apache/crail/conf/CrailConfiguration.java  | 1 -
 client/src/main/java/org/apache/crail/conf/CrailConstants.java   | 1 -
 .../src/main/java/org/apache/crail/core/CoreBlockLocation.java   | 1 -
 .../src/main/java/org/apache/crail/core/CoreDataOperation.java   | 1 -
 client/src/main/java/org/apache/crail/core/CoreDataStore.java    | 1 -
 client/src/main/java/org/apache/crail/core/CoreDirectory.java    | 1 -
 client/src/main/java/org/apache/crail/core/CoreFile.java         | 1 -
 client/src/main/java/org/apache/crail/core/CoreIOStatistics.java | 1 -
 client/src/main/java/org/apache/crail/core/CoreInputStream.java  | 1 -
 .../main/java/org/apache/crail/core/CoreMetaDataOperation.java   | 1 -
 client/src/main/java/org/apache/crail/core/CoreNode.java         | 1 -
 client/src/main/java/org/apache/crail/core/CoreOutputStream.java | 1 -
 client/src/main/java/org/apache/crail/core/CoreStream.java       | 1 -
 .../main/java/org/apache/crail/core/CoreStreamStatistics.java    | 1 -
 client/src/main/java/org/apache/crail/core/CoreSubOperation.java | 1 -
 .../src/main/java/org/apache/crail/core/CoreSyncOperation.java   | 1 -
 .../main/java/org/apache/crail/core/DirectoryInputStream.java    | 1 -
 .../main/java/org/apache/crail/core/DirectoryOutputStream.java   | 1 -
 client/src/main/java/org/apache/crail/core/DirectoryRecord.java  | 1 -
 client/src/main/java/org/apache/crail/memory/BufferCache.java    | 1 -
 .../src/main/java/org/apache/crail/memory/MappedBufferCache.java | 1 -
 client/src/main/java/org/apache/crail/memory/OffHeapBuffer.java  | 1 -
 client/src/main/java/org/apache/crail/metadata/BlockInfo.java    | 1 -
 client/src/main/java/org/apache/crail/metadata/DataNodeInfo.java | 1 -
 .../main/java/org/apache/crail/metadata/DataNodeStatistics.java  | 1 -
 client/src/main/java/org/apache/crail/metadata/FileInfo.java     | 1 -
 client/src/main/java/org/apache/crail/metadata/FileName.java     | 1 -
 client/src/main/java/org/apache/crail/rpc/RpcClient.java         | 1 -
 client/src/main/java/org/apache/crail/rpc/RpcConnection.java     | 1 -
 client/src/main/java/org/apache/crail/rpc/RpcCreateFile.java     | 1 -
 client/src/main/java/org/apache/crail/rpc/RpcDeleteFile.java     | 1 -
 client/src/main/java/org/apache/crail/rpc/RpcDispatcher.java     | 1 -
 client/src/main/java/org/apache/crail/rpc/RpcErrors.java         | 1 -
 client/src/main/java/org/apache/crail/rpc/RpcFuture.java         | 1 -
 client/src/main/java/org/apache/crail/rpc/RpcGetBlock.java       | 1 -
 client/src/main/java/org/apache/crail/rpc/RpcGetDataNode.java    | 1 -
 client/src/main/java/org/apache/crail/rpc/RpcGetFile.java        | 1 -
 client/src/main/java/org/apache/crail/rpc/RpcGetLocation.java    | 1 -
 client/src/main/java/org/apache/crail/rpc/RpcPing.java           | 1 -
 client/src/main/java/org/apache/crail/rpc/RpcRenameFile.java     | 1 -
 client/src/main/java/org/apache/crail/rpc/RpcResponse.java       | 1 -
 client/src/main/java/org/apache/crail/rpc/RpcVoid.java           | 1 -
 client/src/main/java/org/apache/crail/storage/StorageClient.java | 1 -
 .../src/main/java/org/apache/crail/storage/StorageEndpoint.java  | 1 -
 client/src/main/java/org/apache/crail/storage/StorageFuture.java | 1 -
 client/src/main/java/org/apache/crail/storage/StorageResult.java | 1 -
 client/src/main/java/org/apache/crail/tools/CrailBenchmark.java  | 1 -
 client/src/main/java/org/apache/crail/tools/CrailFsck.java       | 1 -
 .../main/java/org/apache/crail/utils/AtomicIntegerModulo.java    | 1 -
 client/src/main/java/org/apache/crail/utils/BlockCache.java      | 1 -
 .../src/main/java/org/apache/crail/utils/BufferCheckpoint.java   | 1 -
 .../java/org/apache/crail/utils/CrailImmediateOperation.java     | 1 -
 client/src/main/java/org/apache/crail/utils/CrailUtils.java      | 1 -
 client/src/main/java/org/apache/crail/utils/EndpointCache.java   | 1 -
 client/src/main/java/org/apache/crail/utils/MultiFuture.java     | 1 -
 client/src/main/java/org/apache/crail/utils/NextBlockCache.java  | 1 -
 client/src/main/java/org/apache/crail/utils/RingBuffer.java      | 1 -
 client/src/test/java/org/apache/crail/ClientTest.java            | 1 -
 hdfs/pom.xml                                                     | 1 -
 hdfs/src/main/java/org/apache/crail/hdfs/CrailHDFS.java          | 1 -
 .../main/java/org/apache/crail/hdfs/CrailHDFSInputStream.java    | 1 -
 .../main/java/org/apache/crail/hdfs/CrailHDFSOutputStream.java   | 1 -
 .../main/java/org/apache/crail/hdfs/CrailHadoopFileSystem.java   | 1 -
 hdfs/src/main/java/org/apache/crail/hdfs/GetConf.java            | 1 -
 .../main/java/org/apache/crail/hdfs/tools/HdfsIOBenchmark.java   | 1 -
 .../test/java/org/apache/crail/hdfs/TestCrailHDFSContract.java   | 1 -
 namenode/pom.xml                                                 | 1 -
 .../src/main/java/org/apache/crail/namenode/AbstractNode.java    | 1 -
 namenode/src/main/java/org/apache/crail/namenode/BlockStore.java | 1 -
 .../src/main/java/org/apache/crail/namenode/DataNodeBlocks.java  | 1 -
 .../src/main/java/org/apache/crail/namenode/DirectoryBlocks.java | 1 -
 namenode/src/main/java/org/apache/crail/namenode/FileBlocks.java | 1 -
 namenode/src/main/java/org/apache/crail/namenode/FileStore.java  | 1 -
 namenode/src/main/java/org/apache/crail/namenode/GCServer.java   | 1 -
 .../src/main/java/org/apache/crail/namenode/KeyValueBlocks.java  | 1 -
 .../src/main/java/org/apache/crail/namenode/LogDispatcher.java   | 1 -
 namenode/src/main/java/org/apache/crail/namenode/LogRecord.java  | 1 -
 .../src/main/java/org/apache/crail/namenode/LogResponse.java     | 1 -
 namenode/src/main/java/org/apache/crail/namenode/LogService.java | 1 -
 .../src/main/java/org/apache/crail/namenode/MultiFileBlocks.java | 1 -
 namenode/src/main/java/org/apache/crail/namenode/NameNode.java   | 1 -
 .../main/java/org/apache/crail/namenode/NameNodeBlockInfo.java   | 1 -
 .../src/main/java/org/apache/crail/namenode/NameNodeService.java | 1 -
 namenode/src/main/java/org/apache/crail/namenode/Sequencer.java  | 1 -
 .../src/main/java/org/apache/crail/namenode/TableBlocks.java     | 1 -
 pom.xml                                                          | 1 -
 rpc-darpc/pom.xml                                                | 1 -
 .../java/org/apache/crail/namenode/rpc/darpc/DaRPCConstants.java | 1 -
 .../java/org/apache/crail/namenode/rpc/darpc/DaRPCNameNode.java  | 1 -
 .../org/apache/crail/namenode/rpc/darpc/DaRPCNameNodeClient.java | 1 -
 .../apache/crail/namenode/rpc/darpc/DaRPCNameNodeConnection.java | 1 -
 .../org/apache/crail/namenode/rpc/darpc/DaRPCNameNodeFuture.java | 1 -
 .../apache/crail/namenode/rpc/darpc/DaRPCNameNodeProtocol.java   | 1 -
 .../apache/crail/namenode/rpc/darpc/DaRPCNameNodeRequest.java    | 1 -
 .../apache/crail/namenode/rpc/darpc/DaRPCNameNodeResponse.java   | 1 -
 .../org/apache/crail/namenode/rpc/darpc/DaRPCNameNodeServer.java | 1 -
 .../apache/crail/namenode/rpc/darpc/DaRPCServiceDispatcher.java  | 1 -
 rpc-narpc/pom.xml                                                | 1 -
 rpc-narpc/src/main/assembly/assembly.xml                         | 1 -
 .../main/java/org/apache/crail/namenode/rpc/tcp/TcpFuture.java   | 1 -
 .../main/java/org/apache/crail/namenode/rpc/tcp/TcpNameNode.java | 1 -
 .../org/apache/crail/namenode/rpc/tcp/TcpNameNodeClient.java     | 1 -
 .../org/apache/crail/namenode/rpc/tcp/TcpNameNodeRequest.java    | 1 -
 .../org/apache/crail/namenode/rpc/tcp/TcpNameNodeResponse.java   | 1 -
 .../org/apache/crail/namenode/rpc/tcp/TcpNameNodeServer.java     | 1 -
 .../java/org/apache/crail/namenode/rpc/tcp/TcpRpcConnection.java | 1 -
 .../java/org/apache/crail/namenode/rpc/tcp/TcpRpcConstants.java  | 1 -
 .../java/org/apache/crail/namenode/rpc/tcp/TcpRpcDispatcher.java | 1 -
 rpc/pom.xml                                                      | 1 -
 rpc/src/main/java/org/apache/crail/rpc/RpcBinding.java           | 1 -
 rpc/src/main/java/org/apache/crail/rpc/RpcNameNodeService.java   | 1 -
 rpc/src/main/java/org/apache/crail/rpc/RpcNameNodeState.java     | 1 -
 rpc/src/main/java/org/apache/crail/rpc/RpcProtocol.java          | 1 -
 rpc/src/main/java/org/apache/crail/rpc/RpcRequestMessage.java    | 1 -
 rpc/src/main/java/org/apache/crail/rpc/RpcResponseMessage.java   | 1 -
 rpc/src/main/java/org/apache/crail/rpc/RpcServer.java            | 1 -
 storage-narpc/pom.xml                                            | 1 -
 storage-narpc/src/main/assembly/assembly.xml                     | 1 -
 .../main/java/org/apache/crail/storage/tcp/TcpStorageClient.java | 1 -
 .../java/org/apache/crail/storage/tcp/TcpStorageConstants.java   | 1 -
 .../java/org/apache/crail/storage/tcp/TcpStorageEndpoint.java    | 1 -
 .../main/java/org/apache/crail/storage/tcp/TcpStorageFuture.java | 1 -
 .../java/org/apache/crail/storage/tcp/TcpStorageProtocol.java    | 1 -
 .../java/org/apache/crail/storage/tcp/TcpStorageRequest.java     | 1 -
 .../java/org/apache/crail/storage/tcp/TcpStorageResponse.java    | 1 -
 .../main/java/org/apache/crail/storage/tcp/TcpStorageServer.java | 1 -
 .../main/java/org/apache/crail/storage/tcp/TcpStorageTier.java   | 1 -
 .../main/java/org/apache/crail/storage/tcp/TcpStorageUtils.java  | 1 -
 storage-nvmf/pom.xml                                             | 1 -
 .../java/org/apache/crail/storage/nvmf/NvmfStorageClient.java    | 1 -
 .../java/org/apache/crail/storage/nvmf/NvmfStorageConstants.java | 1 -
 .../java/org/apache/crail/storage/nvmf/NvmfStorageServer.java    | 1 -
 .../main/java/org/apache/crail/storage/nvmf/NvmfStorageTier.java | 1 -
 .../java/org/apache/crail/storage/nvmf/client/NvmfFuture.java    | 1 -
 .../crail/storage/nvmf/client/NvmfRegisteredBufferCache.java     | 1 -
 .../apache/crail/storage/nvmf/client/NvmfStagingBufferCache.java | 1 -
 .../apache/crail/storage/nvmf/client/NvmfStorageEndpoint.java    | 1 -
 .../crail/storage/nvmf/client/NvmfUnalignedWriteFuture.java      | 1 -
 .../crail/storage/nvmf/client/NvmfStagingBufferCacheTest.java    | 1 -
 storage-rdma/pom.xml                                             | 1 -
 .../src/main/java/org/apache/crail/storage/rdma/MrCache.java     | 1 -
 .../main/java/org/apache/crail/storage/rdma/RdmaConstants.java   | 1 -
 .../java/org/apache/crail/storage/rdma/RdmaStorageClient.java    | 1 -
 .../apache/crail/storage/rdma/RdmaStorageEndpointFactory.java    | 1 -
 .../java/org/apache/crail/storage/rdma/RdmaStorageGroup.java     | 1 -
 .../java/org/apache/crail/storage/rdma/RdmaStorageServer.java    | 1 -
 .../org/apache/crail/storage/rdma/RdmaStorageServerEndpoint.java | 1 -
 .../main/java/org/apache/crail/storage/rdma/RdmaStorageTier.java | 1 -
 .../org/apache/crail/storage/rdma/client/RdmaActiveFuture.java   | 1 -
 .../org/apache/crail/storage/rdma/client/RdmaLocalFuture.java    | 1 -
 .../org/apache/crail/storage/rdma/client/RdmaPassiveFuture.java  | 1 -
 .../crail/storage/rdma/client/RdmaStorageActiveEndpoint.java     | 1 -
 .../storage/rdma/client/RdmaStorageActiveEndpointFactory.java    | 1 -
 .../apache/crail/storage/rdma/client/RdmaStorageActiveGroup.java | 1 -
 .../crail/storage/rdma/client/RdmaStorageLocalEndpoint.java      | 1 -
 .../crail/storage/rdma/client/RdmaStoragePassiveEndpoint.java    | 1 -
 .../storage/rdma/client/RdmaStoragePassiveEndpointFactory.java   | 1 -
 .../crail/storage/rdma/client/RdmaStoragePassiveGroup.java       | 1 -
 storage/pom.xml                                                  | 1 -
 .../src/main/java/org/apache/crail/storage/StorageResource.java  | 1 -
 .../src/main/java/org/apache/crail/storage/StorageRpcClient.java | 1 -
 .../src/main/java/org/apache/crail/storage/StorageServer.java    | 1 -
 storage/src/main/java/org/apache/crail/storage/StorageTier.java  | 1 -
 192 files changed, 4 insertions(+), 191 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-crail/blob/cebc1c3d/NOTICE
----------------------------------------------------------------------
diff --git a/NOTICE b/NOTICE
new file mode 100644
index 0000000..2cae33b
--- /dev/null
+++ b/NOTICE
@@ -0,0 +1,4 @@
+Apache Crail incubating
+Copyright 2017 and onwards The Apache Software Foundation.
+
+Copyright (C) 2015-2018, IBM Corporation

http://git-wip-us.apache.org/repos/asf/incubator-crail/blob/cebc1c3d/assembly/src/main/assembly/assembly.xml
----------------------------------------------------------------------
diff --git a/assembly/src/main/assembly/assembly.xml b/assembly/src/main/assembly/assembly.xml
index 725584a..9aca91b 100644
--- a/assembly/src/main/assembly/assembly.xml
+++ b/assembly/src/main/assembly/assembly.xml
@@ -1,5 +1,4 @@
 <!--
-  ~ Copyright (C) 2018, IBM Corporation
   ~
   ~ Licensed to the Apache Software Foundation (ASF) under one or more
   ~ contributor license agreements.  See the NOTICE file distributed with

http://git-wip-us.apache.org/repos/asf/incubator-crail/blob/cebc1c3d/client/pom.xml
----------------------------------------------------------------------
diff --git a/client/pom.xml b/client/pom.xml
index 302830f..a5eac7c 100644
--- a/client/pom.xml
+++ b/client/pom.xml
@@ -1,5 +1,4 @@
 <!--
-  ~ Copyright (C) 2018, IBM Corporation
   ~
   ~ Licensed to the Apache Software Foundation (ASF) under one or more
   ~ contributor license agreements.  See the NOTICE file distributed with

http://git-wip-us.apache.org/repos/asf/incubator-crail/blob/cebc1c3d/client/src/main/java/org/apache/crail/CrailBlockLocation.java
----------------------------------------------------------------------
diff --git a/client/src/main/java/org/apache/crail/CrailBlockLocation.java b/client/src/main/java/org/apache/crail/CrailBlockLocation.java
index a6bde59..cdc75f1 100644
--- a/client/src/main/java/org/apache/crail/CrailBlockLocation.java
+++ b/client/src/main/java/org/apache/crail/CrailBlockLocation.java
@@ -1,5 +1,4 @@
 /*
- * Copyright (C) 2015-2018, IBM Corporation
  *
  * Licensed to the Apache Software Foundation (ASF) under one or more
  * contributor license agreements.  See the NOTICE file distributed with

http://git-wip-us.apache.org/repos/asf/incubator-crail/blob/cebc1c3d/client/src/main/java/org/apache/crail/CrailBuffer.java
----------------------------------------------------------------------
diff --git a/client/src/main/java/org/apache/crail/CrailBuffer.java b/client/src/main/java/org/apache/crail/CrailBuffer.java
index 545ecc5..f7d77c6 100644
--- a/client/src/main/java/org/apache/crail/CrailBuffer.java
+++ b/client/src/main/java/org/apache/crail/CrailBuffer.java
@@ -1,5 +1,4 @@
 /*
- * Copyright (C) 2015-2018, IBM Corporation
  *
  * Licensed to the Apache Software Foundation (ASF) under one or more
  * contributor license agreements.  See the NOTICE file distributed with

http://git-wip-us.apache.org/repos/asf/incubator-crail/blob/cebc1c3d/client/src/main/java/org/apache/crail/CrailBufferCache.java
----------------------------------------------------------------------
diff --git a/client/src/main/java/org/apache/crail/CrailBufferCache.java b/client/src/main/java/org/apache/crail/CrailBufferCache.java
index 270187c..0793f3b 100644
--- a/client/src/main/java/org/apache/crail/CrailBufferCache.java
+++ b/client/src/main/java/org/apache/crail/CrailBufferCache.java
@@ -1,5 +1,4 @@
 /*
- * Copyright (C) 2018, IBM Corporation
  *
  * Licensed to the Apache Software Foundation (ASF) under one or more
  * contributor license agreements.  See the NOTICE file distributed with

http://git-wip-us.apache.org/repos/asf/incubator-crail/blob/cebc1c3d/client/src/main/java/org/apache/crail/CrailBufferedInputStream.java
----------------------------------------------------------------------
diff --git a/client/src/main/java/org/apache/crail/CrailBufferedInputStream.java b/client/src/main/java/org/apache/crail/CrailBufferedInputStream.java
index c0592be..6b3bd38 100644
--- a/client/src/main/java/org/apache/crail/CrailBufferedInputStream.java
+++ b/client/src/main/java/org/apache/crail/CrailBufferedInputStream.java
@@ -1,5 +1,4 @@
 /*
- * Copyright (C) 2015-2018, IBM Corporation
  *
  * Licensed to the Apache Software Foundation (ASF) under one or more
  * contributor license agreements.  See the NOTICE file distributed with

http://git-wip-us.apache.org/repos/asf/incubator-crail/blob/cebc1c3d/client/src/main/java/org/apache/crail/CrailBufferedOutputStream.java
----------------------------------------------------------------------
diff --git a/client/src/main/java/org/apache/crail/CrailBufferedOutputStream.java b/client/src/main/java/org/apache/crail/CrailBufferedOutputStream.java
index c66a8d0..a2b2c6d 100644
--- a/client/src/main/java/org/apache/crail/CrailBufferedOutputStream.java
+++ b/client/src/main/java/org/apache/crail/CrailBufferedOutputStream.java
@@ -1,5 +1,4 @@
 /*
- * Copyright (C) 2015-2018, IBM Corporation
  *
  * Licensed to the Apache Software Foundation (ASF) under one or more
  * contributor license agreements.  See the NOTICE file distributed with

http://git-wip-us.apache.org/repos/asf/incubator-crail/blob/cebc1c3d/client/src/main/java/org/apache/crail/CrailBufferedStatistics.java
----------------------------------------------------------------------
diff --git a/client/src/main/java/org/apache/crail/CrailBufferedStatistics.java b/client/src/main/java/org/apache/crail/CrailBufferedStatistics.java
index b563112..5e78099 100644
--- a/client/src/main/java/org/apache/crail/CrailBufferedStatistics.java
+++ b/client/src/main/java/org/apache/crail/CrailBufferedStatistics.java
@@ -1,5 +1,4 @@
 /*
- * Copyright (C) 2015-2018, IBM Corporation
  *
  * Licensed to the Apache Software Foundation (ASF) under one or more
  * contributor license agreements.  See the NOTICE file distributed with

http://git-wip-us.apache.org/repos/asf/incubator-crail/blob/cebc1c3d/client/src/main/java/org/apache/crail/CrailContainer.java
----------------------------------------------------------------------
diff --git a/client/src/main/java/org/apache/crail/CrailContainer.java b/client/src/main/java/org/apache/crail/CrailContainer.java
index ad0542d..190dfd1 100644
--- a/client/src/main/java/org/apache/crail/CrailContainer.java
+++ b/client/src/main/java/org/apache/crail/CrailContainer.java
@@ -1,5 +1,4 @@
 /*
- * Copyright (C) 2015-2018, IBM Corporation
  *
  * Licensed to the Apache Software Foundation (ASF) under one or more
  * contributor license agreements.  See the NOTICE file distributed with

http://git-wip-us.apache.org/repos/asf/incubator-crail/blob/cebc1c3d/client/src/main/java/org/apache/crail/CrailDirectory.java
----------------------------------------------------------------------
diff --git a/client/src/main/java/org/apache/crail/CrailDirectory.java b/client/src/main/java/org/apache/crail/CrailDirectory.java
index b91d4dd..02a04b8 100644
--- a/client/src/main/java/org/apache/crail/CrailDirectory.java
+++ b/client/src/main/java/org/apache/crail/CrailDirectory.java
@@ -1,5 +1,4 @@
 /*
- * Copyright (C) 2015-2018, IBM Corporation
  *
  * Licensed to the Apache Software Foundation (ASF) under one or more
  * contributor license agreements.  See the NOTICE file distributed with

http://git-wip-us.apache.org/repos/asf/incubator-crail/blob/cebc1c3d/client/src/main/java/org/apache/crail/CrailFile.java
----------------------------------------------------------------------
diff --git a/client/src/main/java/org/apache/crail/CrailFile.java b/client/src/main/java/org/apache/crail/CrailFile.java
index 7756e7b..2d9d536 100644
--- a/client/src/main/java/org/apache/crail/CrailFile.java
+++ b/client/src/main/java/org/apache/crail/CrailFile.java
@@ -1,5 +1,4 @@
 /*
- * Copyright (C) 2015-2018, IBM Corporation
  *
  * Licensed to the Apache Software Foundation (ASF) under one or more
  * contributor license agreements.  See the NOTICE file distributed with

http://git-wip-us.apache.org/repos/asf/incubator-crail/blob/cebc1c3d/client/src/main/java/org/apache/crail/CrailInputStream.java
----------------------------------------------------------------------
diff --git a/client/src/main/java/org/apache/crail/CrailInputStream.java b/client/src/main/java/org/apache/crail/CrailInputStream.java
index 2fc194d..5857f2c 100644
--- a/client/src/main/java/org/apache/crail/CrailInputStream.java
+++ b/client/src/main/java/org/apache/crail/CrailInputStream.java
@@ -1,5 +1,4 @@
 /*
- * Copyright (C) 2015-2018, IBM Corporation
  *
  * Licensed to the Apache Software Foundation (ASF) under one or more
  * contributor license agreements.  See the NOTICE file distributed with

http://git-wip-us.apache.org/repos/asf/incubator-crail/blob/cebc1c3d/client/src/main/java/org/apache/crail/CrailKeyValue.java
----------------------------------------------------------------------
diff --git a/client/src/main/java/org/apache/crail/CrailKeyValue.java b/client/src/main/java/org/apache/crail/CrailKeyValue.java
index b3d331a..3ac7bae 100644
--- a/client/src/main/java/org/apache/crail/CrailKeyValue.java
+++ b/client/src/main/java/org/apache/crail/CrailKeyValue.java
@@ -1,5 +1,4 @@
 /*
- * Copyright (C) 2015-2018, IBM Corporation
  *
  * Licensed to the Apache Software Foundation (ASF) under one or more
  * contributor license agreements.  See the NOTICE file distributed with

http://git-wip-us.apache.org/repos/asf/incubator-crail/blob/cebc1c3d/client/src/main/java/org/apache/crail/CrailLocationClass.java
----------------------------------------------------------------------
diff --git a/client/src/main/java/org/apache/crail/CrailLocationClass.java b/client/src/main/java/org/apache/crail/CrailLocationClass.java
index 8927426..74069f6 100644
--- a/client/src/main/java/org/apache/crail/CrailLocationClass.java
+++ b/client/src/main/java/org/apache/crail/CrailLocationClass.java
@@ -1,5 +1,4 @@
 /*
- * Copyright (C) 2015-2018, IBM Corporation
  *
  * Licensed to the Apache Software Foundation (ASF) under one or more
  * contributor license agreements.  See the NOTICE file distributed with

http://git-wip-us.apache.org/repos/asf/incubator-crail/blob/cebc1c3d/client/src/main/java/org/apache/crail/CrailMultiFile.java
----------------------------------------------------------------------
diff --git a/client/src/main/java/org/apache/crail/CrailMultiFile.java b/client/src/main/java/org/apache/crail/CrailMultiFile.java
index 5808591..7bc3a87 100644
--- a/client/src/main/java/org/apache/crail/CrailMultiFile.java
+++ b/client/src/main/java/org/apache/crail/CrailMultiFile.java
@@ -1,5 +1,4 @@
 /*
- * Copyright (C) 2015-2018, IBM Corporation
  *
  * Licensed to the Apache Software Foundation (ASF) under one or more
  * contributor license agreements.  See the NOTICE file distributed with

http://git-wip-us.apache.org/repos/asf/incubator-crail/blob/cebc1c3d/client/src/main/java/org/apache/crail/CrailNode.java
----------------------------------------------------------------------
diff --git a/client/src/main/java/org/apache/crail/CrailNode.java b/client/src/main/java/org/apache/crail/CrailNode.java
index 8980125..cfd32bb 100644
--- a/client/src/main/java/org/apache/crail/CrailNode.java
+++ b/client/src/main/java/org/apache/crail/CrailNode.java
@@ -1,5 +1,4 @@
 /*
- * Copyright (C) 2015-2018, IBM Corporation
  *
  * Licensed to the Apache Software Foundation (ASF) under one or more
  * contributor license agreements.  See the NOTICE file distributed with

http://git-wip-us.apache.org/repos/asf/incubator-crail/blob/cebc1c3d/client/src/main/java/org/apache/crail/CrailNodeType.java
----------------------------------------------------------------------
diff --git a/client/src/main/java/org/apache/crail/CrailNodeType.java b/client/src/main/java/org/apache/crail/CrailNodeType.java
index 3e8bda7..daf3a83 100644
--- a/client/src/main/java/org/apache/crail/CrailNodeType.java
+++ b/client/src/main/java/org/apache/crail/CrailNodeType.java
@@ -1,5 +1,4 @@
 /*
- * Copyright (C) 2015-2018, IBM Corporation
  *
  * Licensed to the Apache Software Foundation (ASF) under one or more
  * contributor license agreements.  See the NOTICE file distributed with

http://git-wip-us.apache.org/repos/asf/incubator-crail/blob/cebc1c3d/client/src/main/java/org/apache/crail/CrailOutputStream.java
----------------------------------------------------------------------
diff --git a/client/src/main/java/org/apache/crail/CrailOutputStream.java b/client/src/main/java/org/apache/crail/CrailOutputStream.java
index 04bb4a0..d7304e6 100644
--- a/client/src/main/java/org/apache/crail/CrailOutputStream.java
+++ b/client/src/main/java/org/apache/crail/CrailOutputStream.java
@@ -1,5 +1,4 @@
 /*
- * Copyright (C) 2015-2018, IBM Corporation
  *
  * Licensed to the Apache Software Foundation (ASF) under one or more
  * contributor license agreements.  See the NOTICE file distributed with

http://git-wip-us.apache.org/repos/asf/incubator-crail/blob/cebc1c3d/client/src/main/java/org/apache/crail/CrailPurgeOperation.java
----------------------------------------------------------------------
diff --git a/client/src/main/java/org/apache/crail/CrailPurgeOperation.java b/client/src/main/java/org/apache/crail/CrailPurgeOperation.java
index c9f687a..4d44fa2 100644
--- a/client/src/main/java/org/apache/crail/CrailPurgeOperation.java
+++ b/client/src/main/java/org/apache/crail/CrailPurgeOperation.java
@@ -1,5 +1,4 @@
 /*
- * Copyright (C) 2015-2018, IBM Corporation
  *
  * Licensed to the Apache Software Foundation (ASF) under one or more
  * contributor license agreements.  See the NOTICE file distributed with

http://git-wip-us.apache.org/repos/asf/incubator-crail/blob/cebc1c3d/client/src/main/java/org/apache/crail/CrailResult.java
----------------------------------------------------------------------
diff --git a/client/src/main/java/org/apache/crail/CrailResult.java b/client/src/main/java/org/apache/crail/CrailResult.java
index 61d5a04..7f49837 100644
--- a/client/src/main/java/org/apache/crail/CrailResult.java
+++ b/client/src/main/java/org/apache/crail/CrailResult.java
@@ -1,5 +1,4 @@
 /*
- * Copyright (C) 2015-2018, IBM Corporation
  *
  * Licensed to the Apache Software Foundation (ASF) under one or more
  * contributor license agreements.  See the NOTICE file distributed with

http://git-wip-us.apache.org/repos/asf/incubator-crail/blob/cebc1c3d/client/src/main/java/org/apache/crail/CrailStatistics.java
----------------------------------------------------------------------
diff --git a/client/src/main/java/org/apache/crail/CrailStatistics.java b/client/src/main/java/org/apache/crail/CrailStatistics.java
index 7ff39f5..9c9bbc5 100644
--- a/client/src/main/java/org/apache/crail/CrailStatistics.java
+++ b/client/src/main/java/org/apache/crail/CrailStatistics.java
@@ -1,5 +1,4 @@
 /*
- * Copyright (C) 2015-2018, IBM Corporation
  *
  * Licensed to the Apache Software Foundation (ASF) under one or more
  * contributor license agreements.  See the NOTICE file distributed with

http://git-wip-us.apache.org/repos/asf/incubator-crail/blob/cebc1c3d/client/src/main/java/org/apache/crail/CrailStorageClass.java
----------------------------------------------------------------------
diff --git a/client/src/main/java/org/apache/crail/CrailStorageClass.java b/client/src/main/java/org/apache/crail/CrailStorageClass.java
index af24845..49303bc 100644
--- a/client/src/main/java/org/apache/crail/CrailStorageClass.java
+++ b/client/src/main/java/org/apache/crail/CrailStorageClass.java
@@ -1,5 +1,4 @@
 /*
- * Copyright (C) 2015-2018, IBM Corporation
  *
  * Licensed to the Apache Software Foundation (ASF) under one or more
  * contributor license agreements.  See the NOTICE file distributed with

http://git-wip-us.apache.org/repos/asf/incubator-crail/blob/cebc1c3d/client/src/main/java/org/apache/crail/CrailStore.java
----------------------------------------------------------------------
diff --git a/client/src/main/java/org/apache/crail/CrailStore.java b/client/src/main/java/org/apache/crail/CrailStore.java
index 6c3aae6..5f9a229 100644
--- a/client/src/main/java/org/apache/crail/CrailStore.java
+++ b/client/src/main/java/org/apache/crail/CrailStore.java
@@ -1,5 +1,4 @@
 /*
- * Copyright (C) 2015-2018, IBM Corporation
  *
  * Licensed to the Apache Software Foundation (ASF) under one or more
  * contributor license agreements.  See the NOTICE file distributed with

http://git-wip-us.apache.org/repos/asf/incubator-crail/blob/cebc1c3d/client/src/main/java/org/apache/crail/CrailTable.java
----------------------------------------------------------------------
diff --git a/client/src/main/java/org/apache/crail/CrailTable.java b/client/src/main/java/org/apache/crail/CrailTable.java
index b9315a9..d79ad93 100644
--- a/client/src/main/java/org/apache/crail/CrailTable.java
+++ b/client/src/main/java/org/apache/crail/CrailTable.java
@@ -1,5 +1,4 @@
 /*
- * Copyright (C) 2015-2018, IBM Corporation
  *
  * Licensed to the Apache Software Foundation (ASF) under one or more
  * contributor license agreements.  See the NOTICE file distributed with

http://git-wip-us.apache.org/repos/asf/incubator-crail/blob/cebc1c3d/client/src/main/java/org/apache/crail/FileBufferedInputStream.java
----------------------------------------------------------------------
diff --git a/client/src/main/java/org/apache/crail/FileBufferedInputStream.java b/client/src/main/java/org/apache/crail/FileBufferedInputStream.java
index 45e9aea..e955e24 100644
--- a/client/src/main/java/org/apache/crail/FileBufferedInputStream.java
+++ b/client/src/main/java/org/apache/crail/FileBufferedInputStream.java
@@ -1,5 +1,4 @@
 /*
- * Copyright (C) 2015-2018, IBM Corporation
  *
  * Licensed to the Apache Software Foundation (ASF) under one or more
  * contributor license agreements.  See the NOTICE file distributed with

http://git-wip-us.apache.org/repos/asf/incubator-crail/blob/cebc1c3d/client/src/main/java/org/apache/crail/MultiFileBufferedInputStream.java
----------------------------------------------------------------------
diff --git a/client/src/main/java/org/apache/crail/MultiFileBufferedInputStream.java b/client/src/main/java/org/apache/crail/MultiFileBufferedInputStream.java
index 9b061f7..ec76e25 100644
--- a/client/src/main/java/org/apache/crail/MultiFileBufferedInputStream.java
+++ b/client/src/main/java/org/apache/crail/MultiFileBufferedInputStream.java
@@ -1,5 +1,4 @@
 /*
- * Copyright (C) 2015-2018, IBM Corporation
  *
  * Licensed to the Apache Software Foundation (ASF) under one or more
  * contributor license agreements.  See the NOTICE file distributed with

http://git-wip-us.apache.org/repos/asf/incubator-crail/blob/cebc1c3d/client/src/main/java/org/apache/crail/Upcoming.java
----------------------------------------------------------------------
diff --git a/client/src/main/java/org/apache/crail/Upcoming.java b/client/src/main/java/org/apache/crail/Upcoming.java
index da78fbf..1889416 100644
--- a/client/src/main/java/org/apache/crail/Upcoming.java
+++ b/client/src/main/java/org/apache/crail/Upcoming.java
@@ -1,5 +1,4 @@
 /*
- * Copyright (C) 2015-2018, IBM Corporation
  *
  * Licensed to the Apache Software Foundation (ASF) under one or more
  * contributor license agreements.  See the NOTICE file distributed with

http://git-wip-us.apache.org/repos/asf/incubator-crail/blob/cebc1c3d/client/src/main/java/org/apache/crail/conf/Configurable.java
----------------------------------------------------------------------
diff --git a/client/src/main/java/org/apache/crail/conf/Configurable.java b/client/src/main/java/org/apache/crail/conf/Configurable.java
index b69182d..1db5185 100644
--- a/client/src/main/java/org/apache/crail/conf/Configurable.java
+++ b/client/src/main/java/org/apache/crail/conf/Configurable.java
@@ -1,5 +1,4 @@
 /*
- * Copyright (C) 2015-2018, IBM Corporation
  *
  * Licensed to the Apache Software Foundation (ASF) under one or more
  * contributor license agreements.  See the NOTICE file distributed with

http://git-wip-us.apache.org/repos/asf/incubator-crail/blob/cebc1c3d/client/src/main/java/org/apache/crail/conf/CrailConfiguration.java
----------------------------------------------------------------------
diff --git a/client/src/main/java/org/apache/crail/conf/CrailConfiguration.java b/client/src/main/java/org/apache/crail/conf/CrailConfiguration.java
index 37d7a37..f5a8bdd 100644
--- a/client/src/main/java/org/apache/crail/conf/CrailConfiguration.java
+++ b/client/src/main/java/org/apache/crail/conf/CrailConfiguration.java
@@ -1,5 +1,4 @@
 /*
- * Copyright (C) 2015-2018, IBM Corporation
  *
  * Licensed to the Apache Software Foundation (ASF) under one or more
  * contributor license agreements.  See the NOTICE file distributed with

http://git-wip-us.apache.org/repos/asf/incubator-crail/blob/cebc1c3d/client/src/main/java/org/apache/crail/conf/CrailConstants.java
----------------------------------------------------------------------
diff --git a/client/src/main/java/org/apache/crail/conf/CrailConstants.java b/client/src/main/java/org/apache/crail/conf/CrailConstants.java
index 313c544..56d99db 100644
--- a/client/src/main/java/org/apache/crail/conf/CrailConstants.java
+++ b/client/src/main/java/org/apache/crail/conf/CrailConstants.java
@@ -1,5 +1,4 @@
 /*
- * Copyright (C) 2015-2018, IBM Corporation
  *
  * Licensed to the Apache Software Foundation (ASF) under one or more
  * contributor license agreements.  See the NOTICE file distributed with

http://git-wip-us.apache.org/repos/asf/incubator-crail/blob/cebc1c3d/client/src/main/java/org/apache/crail/core/CoreBlockLocation.java
----------------------------------------------------------------------
diff --git a/client/src/main/java/org/apache/crail/core/CoreBlockLocation.java b/client/src/main/java/org/apache/crail/core/CoreBlockLocation.java
index 2eba5f5..ec56a15 100644
--- a/client/src/main/java/org/apache/crail/core/CoreBlockLocation.java
+++ b/client/src/main/java/org/apache/crail/core/CoreBlockLocation.java
@@ -1,5 +1,4 @@
 /*
- * Copyright (C) 2015-2018, IBM Corporation
  *
  * Licensed to the Apache Software Foundation (ASF) under one or more
  * contributor license agreements.  See the NOTICE file distributed with

http://git-wip-us.apache.org/repos/asf/incubator-crail/blob/cebc1c3d/client/src/main/java/org/apache/crail/core/CoreDataOperation.java
----------------------------------------------------------------------
diff --git a/client/src/main/java/org/apache/crail/core/CoreDataOperation.java b/client/src/main/java/org/apache/crail/core/CoreDataOperation.java
index a502671..d30e62c 100644
--- a/client/src/main/java/org/apache/crail/core/CoreDataOperation.java
+++ b/client/src/main/java/org/apache/crail/core/CoreDataOperation.java
@@ -1,5 +1,4 @@
 /*
- * Copyright (C) 2015-2018, IBM Corporation
  *
  * Licensed to the Apache Software Foundation (ASF) under one or more
  * contributor license agreements.  See the NOTICE file distributed with

http://git-wip-us.apache.org/repos/asf/incubator-crail/blob/cebc1c3d/client/src/main/java/org/apache/crail/core/CoreDataStore.java
----------------------------------------------------------------------
diff --git a/client/src/main/java/org/apache/crail/core/CoreDataStore.java b/client/src/main/java/org/apache/crail/core/CoreDataStore.java
index 92d5bec..9ed16f5 100644
--- a/client/src/main/java/org/apache/crail/core/CoreDataStore.java
+++ b/client/src/main/java/org/apache/crail/core/CoreDataStore.java
@@ -1,5 +1,4 @@
 /*
- * Copyright (C) 2015-2018, IBM Corporation
  *
  * Licensed to the Apache Software Foundation (ASF) under one or more
  * contributor license agreements.  See the NOTICE file distributed with

http://git-wip-us.apache.org/repos/asf/incubator-crail/blob/cebc1c3d/client/src/main/java/org/apache/crail/core/CoreDirectory.java
----------------------------------------------------------------------
diff --git a/client/src/main/java/org/apache/crail/core/CoreDirectory.java b/client/src/main/java/org/apache/crail/core/CoreDirectory.java
index a66d201..9d7fe5b 100644
--- a/client/src/main/java/org/apache/crail/core/CoreDirectory.java
+++ b/client/src/main/java/org/apache/crail/core/CoreDirectory.java
@@ -1,5 +1,4 @@
 /*
- * Copyright (C) 2015-2018, IBM Corporation
  *
  * Licensed to the Apache Software Foundation (ASF) under one or more
  * contributor license agreements.  See the NOTICE file distributed with

http://git-wip-us.apache.org/repos/asf/incubator-crail/blob/cebc1c3d/client/src/main/java/org/apache/crail/core/CoreFile.java
----------------------------------------------------------------------
diff --git a/client/src/main/java/org/apache/crail/core/CoreFile.java b/client/src/main/java/org/apache/crail/core/CoreFile.java
index 8d762dc..19257b2 100644
--- a/client/src/main/java/org/apache/crail/core/CoreFile.java
+++ b/client/src/main/java/org/apache/crail/core/CoreFile.java
@@ -1,5 +1,4 @@
 /*
- * Copyright (C) 2015-2018, IBM Corporation
  *
  * Licensed to the Apache Software Foundation (ASF) under one or more
  * contributor license agreements.  See the NOTICE file distributed with

http://git-wip-us.apache.org/repos/asf/incubator-crail/blob/cebc1c3d/client/src/main/java/org/apache/crail/core/CoreIOStatistics.java
----------------------------------------------------------------------
diff --git a/client/src/main/java/org/apache/crail/core/CoreIOStatistics.java b/client/src/main/java/org/apache/crail/core/CoreIOStatistics.java
index 0bb34eb..efe2b62 100644
--- a/client/src/main/java/org/apache/crail/core/CoreIOStatistics.java
+++ b/client/src/main/java/org/apache/crail/core/CoreIOStatistics.java
@@ -1,5 +1,4 @@
 /*
- * Copyright (C) 2015-2018, IBM Corporation
  *
  * Licensed to the Apache Software Foundation (ASF) under one or more
  * contributor license agreements.  See the NOTICE file distributed with

http://git-wip-us.apache.org/repos/asf/incubator-crail/blob/cebc1c3d/client/src/main/java/org/apache/crail/core/CoreInputStream.java
----------------------------------------------------------------------
diff --git a/client/src/main/java/org/apache/crail/core/CoreInputStream.java b/client/src/main/java/org/apache/crail/core/CoreInputStream.java
index 61425ce..3628f95 100644
--- a/client/src/main/java/org/apache/crail/core/CoreInputStream.java
+++ b/client/src/main/java/org/apache/crail/core/CoreInputStream.java
@@ -1,5 +1,4 @@
 /*
- * Copyright (C) 2015-2018, IBM Corporation
  *
  * Licensed to the Apache Software Foundation (ASF) under one or more
  * contributor license agreements.  See the NOTICE file distributed with

http://git-wip-us.apache.org/repos/asf/incubator-crail/blob/cebc1c3d/client/src/main/java/org/apache/crail/core/CoreMetaDataOperation.java
----------------------------------------------------------------------
diff --git a/client/src/main/java/org/apache/crail/core/CoreMetaDataOperation.java b/client/src/main/java/org/apache/crail/core/CoreMetaDataOperation.java
index 187b9f9..d24fe2f 100644
--- a/client/src/main/java/org/apache/crail/core/CoreMetaDataOperation.java
+++ b/client/src/main/java/org/apache/crail/core/CoreMetaDataOperation.java
@@ -1,5 +1,4 @@
 /*
- * Copyright (C) 2015-2018, IBM Corporation
  *
  * Licensed to the Apache Software Foundation (ASF) under one or more
  * contributor license agreements.  See the NOTICE file distributed with

http://git-wip-us.apache.org/repos/asf/incubator-crail/blob/cebc1c3d/client/src/main/java/org/apache/crail/core/CoreNode.java
----------------------------------------------------------------------
diff --git a/client/src/main/java/org/apache/crail/core/CoreNode.java b/client/src/main/java/org/apache/crail/core/CoreNode.java
index e1405ff..27fc180 100644
--- a/client/src/main/java/org/apache/crail/core/CoreNode.java
+++ b/client/src/main/java/org/apache/crail/core/CoreNode.java
@@ -1,5 +1,4 @@
 /*
- * Copyright (C) 2015-2018, IBM Corporation
  *
  * Licensed to the Apache Software Foundation (ASF) under one or more
  * contributor license agreements.  See the NOTICE file distributed with

http://git-wip-us.apache.org/repos/asf/incubator-crail/blob/cebc1c3d/client/src/main/java/org/apache/crail/core/CoreOutputStream.java
----------------------------------------------------------------------
diff --git a/client/src/main/java/org/apache/crail/core/CoreOutputStream.java b/client/src/main/java/org/apache/crail/core/CoreOutputStream.java
index b02e550..d463833 100644
--- a/client/src/main/java/org/apache/crail/core/CoreOutputStream.java
+++ b/client/src/main/java/org/apache/crail/core/CoreOutputStream.java
@@ -1,5 +1,4 @@
 /*
- * Copyright (C) 2015-2018, IBM Corporation
  *
  * Licensed to the Apache Software Foundation (ASF) under one or more
  * contributor license agreements.  See the NOTICE file distributed with

http://git-wip-us.apache.org/repos/asf/incubator-crail/blob/cebc1c3d/client/src/main/java/org/apache/crail/core/CoreStream.java
----------------------------------------------------------------------
diff --git a/client/src/main/java/org/apache/crail/core/CoreStream.java b/client/src/main/java/org/apache/crail/core/CoreStream.java
index 1f02be9..71d6c0d 100644
--- a/client/src/main/java/org/apache/crail/core/CoreStream.java
+++ b/client/src/main/java/org/apache/crail/core/CoreStream.java
@@ -1,5 +1,4 @@
 /*
- * Copyright (C) 2015-2018, IBM Corporation
  *
  * Licensed to the Apache Software Foundation (ASF) under one or more
  * contributor license agreements.  See the NOTICE file distributed with

http://git-wip-us.apache.org/repos/asf/incubator-crail/blob/cebc1c3d/client/src/main/java/org/apache/crail/core/CoreStreamStatistics.java
----------------------------------------------------------------------
diff --git a/client/src/main/java/org/apache/crail/core/CoreStreamStatistics.java b/client/src/main/java/org/apache/crail/core/CoreStreamStatistics.java
index 55f970c..c8cc6d3 100644
--- a/client/src/main/java/org/apache/crail/core/CoreStreamStatistics.java
+++ b/client/src/main/java/org/apache/crail/core/CoreStreamStatistics.java
@@ -1,5 +1,4 @@
 /*
- * Copyright (C) 2015-2018, IBM Corporation
  *
  * Licensed to the Apache Software Foundation (ASF) under one or more
  * contributor license agreements.  See the NOTICE file distributed with

http://git-wip-us.apache.org/repos/asf/incubator-crail/blob/cebc1c3d/client/src/main/java/org/apache/crail/core/CoreSubOperation.java
----------------------------------------------------------------------
diff --git a/client/src/main/java/org/apache/crail/core/CoreSubOperation.java b/client/src/main/java/org/apache/crail/core/CoreSubOperation.java
index bbfc0a2..dbf3d12 100644
--- a/client/src/main/java/org/apache/crail/core/CoreSubOperation.java
+++ b/client/src/main/java/org/apache/crail/core/CoreSubOperation.java
@@ -1,5 +1,4 @@
 /*
- * Copyright (C) 2015-2018, IBM Corporation
  *
  * Licensed to the Apache Software Foundation (ASF) under one or more
  * contributor license agreements.  See the NOTICE file distributed with

http://git-wip-us.apache.org/repos/asf/incubator-crail/blob/cebc1c3d/client/src/main/java/org/apache/crail/core/CoreSyncOperation.java
----------------------------------------------------------------------
diff --git a/client/src/main/java/org/apache/crail/core/CoreSyncOperation.java b/client/src/main/java/org/apache/crail/core/CoreSyncOperation.java
index c2544ef..c1232b6 100644
--- a/client/src/main/java/org/apache/crail/core/CoreSyncOperation.java
+++ b/client/src/main/java/org/apache/crail/core/CoreSyncOperation.java
@@ -1,5 +1,4 @@
 /*
- * Copyright (C) 2015-2018, IBM Corporation
  *
  * Licensed to the Apache Software Foundation (ASF) under one or more
  * contributor license agreements.  See the NOTICE file distributed with

http://git-wip-us.apache.org/repos/asf/incubator-crail/blob/cebc1c3d/client/src/main/java/org/apache/crail/core/DirectoryInputStream.java
----------------------------------------------------------------------
diff --git a/client/src/main/java/org/apache/crail/core/DirectoryInputStream.java b/client/src/main/java/org/apache/crail/core/DirectoryInputStream.java
index 56a2c0b..b2330d5 100644
--- a/client/src/main/java/org/apache/crail/core/DirectoryInputStream.java
+++ b/client/src/main/java/org/apache/crail/core/DirectoryInputStream.java
@@ -1,5 +1,4 @@
 /*
- * Copyright (C) 2015-2018, IBM Corporation
  *
  * Licensed to the Apache Software Foundation (ASF) under one or more
  * contributor license agreements.  See the NOTICE file distributed with

http://git-wip-us.apache.org/repos/asf/incubator-crail/blob/cebc1c3d/client/src/main/java/org/apache/crail/core/DirectoryOutputStream.java
----------------------------------------------------------------------
diff --git a/client/src/main/java/org/apache/crail/core/DirectoryOutputStream.java b/client/src/main/java/org/apache/crail/core/DirectoryOutputStream.java
index e50c7bd..38985f9 100644
--- a/client/src/main/java/org/apache/crail/core/DirectoryOutputStream.java
+++ b/client/src/main/java/org/apache/crail/core/DirectoryOutputStream.java
@@ -1,5 +1,4 @@
 /*
- * Copyright (C) 2015-2018, IBM Corporation
  *
  * Licensed to the Apache Software Foundation (ASF) under one or more
  * contributor license agreements.  See the NOTICE file distributed with

http://git-wip-us.apache.org/repos/asf/incubator-crail/blob/cebc1c3d/client/src/main/java/org/apache/crail/core/DirectoryRecord.java
----------------------------------------------------------------------
diff --git a/client/src/main/java/org/apache/crail/core/DirectoryRecord.java b/client/src/main/java/org/apache/crail/core/DirectoryRecord.java
index e9a8ac4..a975047 100644
--- a/client/src/main/java/org/apache/crail/core/DirectoryRecord.java
+++ b/client/src/main/java/org/apache/crail/core/DirectoryRecord.java
@@ -1,5 +1,4 @@
 /*
- * Copyright (C) 2015-2018, IBM Corporation
  *
  * Licensed to the Apache Software Foundation (ASF) under one or more
  * contributor license agreements.  See the NOTICE file distributed with

http://git-wip-us.apache.org/repos/asf/incubator-crail/blob/cebc1c3d/client/src/main/java/org/apache/crail/memory/BufferCache.java
----------------------------------------------------------------------
diff --git a/client/src/main/java/org/apache/crail/memory/BufferCache.java b/client/src/main/java/org/apache/crail/memory/BufferCache.java
index 108d75f..9a7c16a 100644
--- a/client/src/main/java/org/apache/crail/memory/BufferCache.java
+++ b/client/src/main/java/org/apache/crail/memory/BufferCache.java
@@ -1,5 +1,4 @@
 /*
- * Copyright (C) 2015-2018, IBM Corporation
  *
  * Licensed to the Apache Software Foundation (ASF) under one or more
  * contributor license agreements.  See the NOTICE file distributed with

http://git-wip-us.apache.org/repos/asf/incubator-crail/blob/cebc1c3d/client/src/main/java/org/apache/crail/memory/MappedBufferCache.java
----------------------------------------------------------------------
diff --git a/client/src/main/java/org/apache/crail/memory/MappedBufferCache.java b/client/src/main/java/org/apache/crail/memory/MappedBufferCache.java
index 9e37ca2..bc78afe 100644
--- a/client/src/main/java/org/apache/crail/memory/MappedBufferCache.java
+++ b/client/src/main/java/org/apache/crail/memory/MappedBufferCache.java
@@ -1,5 +1,4 @@
 /*
- * Copyright (C) 2015-2018, IBM Corporation
  *
  * Licensed to the Apache Software Foundation (ASF) under one or more
  * contributor license agreements.  See the NOTICE file distributed with

http://git-wip-us.apache.org/repos/asf/incubator-crail/blob/cebc1c3d/client/src/main/java/org/apache/crail/memory/OffHeapBuffer.java
----------------------------------------------------------------------
diff --git a/client/src/main/java/org/apache/crail/memory/OffHeapBuffer.java b/client/src/main/java/org/apache/crail/memory/OffHeapBuffer.java
index e617393..9eff9d9 100644
--- a/client/src/main/java/org/apache/crail/memory/OffHeapBuffer.java
+++ b/client/src/main/java/org/apache/crail/memory/OffHeapBuffer.java
@@ -1,5 +1,4 @@
 /*
- * Copyright (C) 2015-2018, IBM Corporation
  *
  * Licensed to the Apache Software Foundation (ASF) under one or more
  * contributor license agreements.  See the NOTICE file distributed with

http://git-wip-us.apache.org/repos/asf/incubator-crail/blob/cebc1c3d/client/src/main/java/org/apache/crail/metadata/BlockInfo.java
----------------------------------------------------------------------
diff --git a/client/src/main/java/org/apache/crail/metadata/BlockInfo.java b/client/src/main/java/org/apache/crail/metadata/BlockInfo.java
index a4876d8..2a28cd8 100644
--- a/client/src/main/java/org/apache/crail/metadata/BlockInfo.java
+++ b/client/src/main/java/org/apache/crail/metadata/BlockInfo.java
@@ -1,5 +1,4 @@
 /*
- * Copyright (C) 2015-2018, IBM Corporation
  *
  * Licensed to the Apache Software Foundation (ASF) under one or more
  * contributor license agreements.  See the NOTICE file distributed with

http://git-wip-us.apache.org/repos/asf/incubator-crail/blob/cebc1c3d/client/src/main/java/org/apache/crail/metadata/DataNodeInfo.java
----------------------------------------------------------------------
diff --git a/client/src/main/java/org/apache/crail/metadata/DataNodeInfo.java b/client/src/main/java/org/apache/crail/metadata/DataNodeInfo.java
index 7dade79..be82de6 100644
--- a/client/src/main/java/org/apache/crail/metadata/DataNodeInfo.java
+++ b/client/src/main/java/org/apache/crail/metadata/DataNodeInfo.java
@@ -1,5 +1,4 @@
 /*
- * Copyright (C) 2015-2018, IBM Corporation
  *
  * Licensed to the Apache Software Foundation (ASF) under one or more
  * contributor license agreements.  See the NOTICE file distributed with

http://git-wip-us.apache.org/repos/asf/incubator-crail/blob/cebc1c3d/client/src/main/java/org/apache/crail/metadata/DataNodeStatistics.java
----------------------------------------------------------------------
diff --git a/client/src/main/java/org/apache/crail/metadata/DataNodeStatistics.java b/client/src/main/java/org/apache/crail/metadata/DataNodeStatistics.java
index 39a32c0..fc52f14 100644
--- a/client/src/main/java/org/apache/crail/metadata/DataNodeStatistics.java
+++ b/client/src/main/java/org/apache/crail/metadata/DataNodeStatistics.java
@@ -1,5 +1,4 @@
 /*
- * Copyright (C) 2015-2018, IBM Corporation
  *
  * Licensed to the Apache Software Foundation (ASF) under one or more
  * contributor license agreements.  See the NOTICE file distributed with

http://git-wip-us.apache.org/repos/asf/incubator-crail/blob/cebc1c3d/client/src/main/java/org/apache/crail/metadata/FileInfo.java
----------------------------------------------------------------------
diff --git a/client/src/main/java/org/apache/crail/metadata/FileInfo.java b/client/src/main/java/org/apache/crail/metadata/FileInfo.java
index ad0f06a..e76ce5d 100644
--- a/client/src/main/java/org/apache/crail/metadata/FileInfo.java
+++ b/client/src/main/java/org/apache/crail/metadata/FileInfo.java
@@ -1,5 +1,4 @@
 /*
- * Copyright (C) 2015-2018, IBM Corporation
  *
  * Licensed to the Apache Software Foundation (ASF) under one or more
  * contributor license agreements.  See the NOTICE file distributed with

http://git-wip-us.apache.org/repos/asf/incubator-crail/blob/cebc1c3d/client/src/main/java/org/apache/crail/metadata/FileName.java
----------------------------------------------------------------------
diff --git a/client/src/main/java/org/apache/crail/metadata/FileName.java b/client/src/main/java/org/apache/crail/metadata/FileName.java
index 4986be7..7a61581 100644
--- a/client/src/main/java/org/apache/crail/metadata/FileName.java
+++ b/client/src/main/java/org/apache/crail/metadata/FileName.java
@@ -1,5 +1,4 @@
 /*
- * Copyright (C) 2015-2018, IBM Corporation
  *
  * Licensed to the Apache Software Foundation (ASF) under one or more
  * contributor license agreements.  See the NOTICE file distributed with

http://git-wip-us.apache.org/repos/asf/incubator-crail/blob/cebc1c3d/client/src/main/java/org/apache/crail/rpc/RpcClient.java
----------------------------------------------------------------------
diff --git a/client/src/main/java/org/apache/crail/rpc/RpcClient.java b/client/src/main/java/org/apache/crail/rpc/RpcClient.java
index b8339e5..6eb4312 100644
--- a/client/src/main/java/org/apache/crail/rpc/RpcClient.java
+++ b/client/src/main/java/org/apache/crail/rpc/RpcClient.java
@@ -1,5 +1,4 @@
 /*
- * Copyright (C) 2015-2018, IBM Corporation
  *
  * Licensed to the Apache Software Foundation (ASF) under one or more
  * contributor license agreements.  See the NOTICE file distributed with

http://git-wip-us.apache.org/repos/asf/incubator-crail/blob/cebc1c3d/client/src/main/java/org/apache/crail/rpc/RpcConnection.java
----------------------------------------------------------------------
diff --git a/client/src/main/java/org/apache/crail/rpc/RpcConnection.java b/client/src/main/java/org/apache/crail/rpc/RpcConnection.java
index cf5d3b0..d434fdb 100644
--- a/client/src/main/java/org/apache/crail/rpc/RpcConnection.java
+++ b/client/src/main/java/org/apache/crail/rpc/RpcConnection.java
@@ -1,5 +1,4 @@
 /*
- * Copyright (C) 2015-2018, IBM Corporation
  *
  * Licensed to the Apache Software Foundation (ASF) under one or more
  * contributor license agreements.  See the NOTICE file distributed with

http://git-wip-us.apache.org/repos/asf/incubator-crail/blob/cebc1c3d/client/src/main/java/org/apache/crail/rpc/RpcCreateFile.java
----------------------------------------------------------------------
diff --git a/client/src/main/java/org/apache/crail/rpc/RpcCreateFile.java b/client/src/main/java/org/apache/crail/rpc/RpcCreateFile.java
index 062f4d0..8defa5c 100644
--- a/client/src/main/java/org/apache/crail/rpc/RpcCreateFile.java
+++ b/client/src/main/java/org/apache/crail/rpc/RpcCreateFile.java
@@ -1,5 +1,4 @@
 /*
- * Copyright (C) 2015-2018, IBM Corporation
  *
  * Licensed to the Apache Software Foundation (ASF) under one or more
  * contributor license agreements.  See the NOTICE file distributed with

http://git-wip-us.apache.org/repos/asf/incubator-crail/blob/cebc1c3d/client/src/main/java/org/apache/crail/rpc/RpcDeleteFile.java
----------------------------------------------------------------------
diff --git a/client/src/main/java/org/apache/crail/rpc/RpcDeleteFile.java b/client/src/main/java/org/apache/crail/rpc/RpcDeleteFile.java
index 3cbb431..4634631 100644
--- a/client/src/main/java/org/apache/crail/rpc/RpcDeleteFile.java
+++ b/client/src/main/java/org/apache/crail/rpc/RpcDeleteFile.java
@@ -1,5 +1,4 @@
 /*
- * Copyright (C) 2015-2018, IBM Corporation
  *
  * Licensed to the Apache Software Foundation (ASF) under one or more
  * contributor license agreements.  See the NOTICE file distributed with

http://git-wip-us.apache.org/repos/asf/incubator-crail/blob/cebc1c3d/client/src/main/java/org/apache/crail/rpc/RpcDispatcher.java
----------------------------------------------------------------------
diff --git a/client/src/main/java/org/apache/crail/rpc/RpcDispatcher.java b/client/src/main/java/org/apache/crail/rpc/RpcDispatcher.java
index ab9dda0..f8d38f5 100644
--- a/client/src/main/java/org/apache/crail/rpc/RpcDispatcher.java
+++ b/client/src/main/java/org/apache/crail/rpc/RpcDispatcher.java
@@ -1,5 +1,4 @@
 /*
- * Copyright (C) 2015-2018, IBM Corporation
  *
  * Licensed to the Apache Software Foundation (ASF) under one or more
  * contributor license agreements.  See the NOTICE file distributed with

http://git-wip-us.apache.org/repos/asf/incubator-crail/blob/cebc1c3d/client/src/main/java/org/apache/crail/rpc/RpcErrors.java
----------------------------------------------------------------------
diff --git a/client/src/main/java/org/apache/crail/rpc/RpcErrors.java b/client/src/main/java/org/apache/crail/rpc/RpcErrors.java
index 986a259..367e772 100644
--- a/client/src/main/java/org/apache/crail/rpc/RpcErrors.java
+++ b/client/src/main/java/org/apache/crail/rpc/RpcErrors.java
@@ -1,5 +1,4 @@
 /*
- * Copyright (C) 2015-2018, IBM Corporation
  *
  * Licensed to the Apache Software Foundation (ASF) under one or more
  * contributor license agreements.  See the NOTICE file distributed with

http://git-wip-us.apache.org/repos/asf/incubator-crail/blob/cebc1c3d/client/src/main/java/org/apache/crail/rpc/RpcFuture.java
----------------------------------------------------------------------
diff --git a/client/src/main/java/org/apache/crail/rpc/RpcFuture.java b/client/src/main/java/org/apache/crail/rpc/RpcFuture.java
index ac7585d..4324154 100644
--- a/client/src/main/java/org/apache/crail/rpc/RpcFuture.java
+++ b/client/src/main/java/org/apache/crail/rpc/RpcFuture.java
@@ -1,5 +1,4 @@
 /*
- * Copyright (C) 2015-2018, IBM Corporation
  *
  * Licensed to the Apache Software Foundation (ASF) under one or more
  * contributor license agreements.  See the NOTICE file distributed with

http://git-wip-us.apache.org/repos/asf/incubator-crail/blob/cebc1c3d/client/src/main/java/org/apache/crail/rpc/RpcGetBlock.java
----------------------------------------------------------------------
diff --git a/client/src/main/java/org/apache/crail/rpc/RpcGetBlock.java b/client/src/main/java/org/apache/crail/rpc/RpcGetBlock.java
index c0af592..deb4e21 100644
--- a/client/src/main/java/org/apache/crail/rpc/RpcGetBlock.java
+++ b/client/src/main/java/org/apache/crail/rpc/RpcGetBlock.java
@@ -1,5 +1,4 @@
 /*
- * Copyright (C) 2015-2018, IBM Corporation
  *
  * Licensed to the Apache Software Foundation (ASF) under one or more
  * contributor license agreements.  See the NOTICE file distributed with

http://git-wip-us.apache.org/repos/asf/incubator-crail/blob/cebc1c3d/client/src/main/java/org/apache/crail/rpc/RpcGetDataNode.java
----------------------------------------------------------------------
diff --git a/client/src/main/java/org/apache/crail/rpc/RpcGetDataNode.java b/client/src/main/java/org/apache/crail/rpc/RpcGetDataNode.java
index 5994a26..ff9d924 100644
--- a/client/src/main/java/org/apache/crail/rpc/RpcGetDataNode.java
+++ b/client/src/main/java/org/apache/crail/rpc/RpcGetDataNode.java
@@ -1,5 +1,4 @@
 /*
- * Copyright (C) 2015-2018, IBM Corporation
  *
  * Licensed to the Apache Software Foundation (ASF) under one or more
  * contributor license agreements.  See the NOTICE file distributed with

http://git-wip-us.apache.org/repos/asf/incubator-crail/blob/cebc1c3d/client/src/main/java/org/apache/crail/rpc/RpcGetFile.java
----------------------------------------------------------------------
diff --git a/client/src/main/java/org/apache/crail/rpc/RpcGetFile.java b/client/src/main/java/org/apache/crail/rpc/RpcGetFile.java
index 2a58d4e..e0f6f9e 100644
--- a/client/src/main/java/org/apache/crail/rpc/RpcGetFile.java
+++ b/client/src/main/java/org/apache/crail/rpc/RpcGetFile.java
@@ -1,5 +1,4 @@
 /*
- * Copyright (C) 2015-2018, IBM Corporation
  *
  * Licensed to the Apache Software Foundation (ASF) under one or more
  * contributor license agreements.  See the NOTICE file distributed with

http://git-wip-us.apache.org/repos/asf/incubator-crail/blob/cebc1c3d/client/src/main/java/org/apache/crail/rpc/RpcGetLocation.java
----------------------------------------------------------------------
diff --git a/client/src/main/java/org/apache/crail/rpc/RpcGetLocation.java b/client/src/main/java/org/apache/crail/rpc/RpcGetLocation.java
index fe75117..d6e24f3 100644
--- a/client/src/main/java/org/apache/crail/rpc/RpcGetLocation.java
+++ b/client/src/main/java/org/apache/crail/rpc/RpcGetLocation.java
@@ -1,5 +1,4 @@
 /*
- * Copyright (C) 2015-2018, IBM Corporation
  *
  * Licensed to the Apache Software Foundation (ASF) under one or more
  * contributor license agreements.  See the NOTICE file distributed with

http://git-wip-us.apache.org/repos/asf/incubator-crail/blob/cebc1c3d/client/src/main/java/org/apache/crail/rpc/RpcPing.java
----------------------------------------------------------------------
diff --git a/client/src/main/java/org/apache/crail/rpc/RpcPing.java b/client/src/main/java/org/apache/crail/rpc/RpcPing.java
index fb7c1be..6cc75f5 100644
--- a/client/src/main/java/org/apache/crail/rpc/RpcPing.java
+++ b/client/src/main/java/org/apache/crail/rpc/RpcPing.java
@@ -1,5 +1,4 @@
 /*
- * Copyright (C) 2015-2018, IBM Corporation
  *
  * Licensed to the Apache Software Foundation (ASF) under one or more
  * contributor license agreements.  See the NOTICE file distributed with

http://git-wip-us.apache.org/repos/asf/incubator-crail/blob/cebc1c3d/client/src/main/java/org/apache/crail/rpc/RpcRenameFile.java
----------------------------------------------------------------------
diff --git a/client/src/main/java/org/apache/crail/rpc/RpcRenameFile.java b/client/src/main/java/org/apache/crail/rpc/RpcRenameFile.java
index 4dba406..e09c02a 100644
--- a/client/src/main/java/org/apache/crail/rpc/RpcRenameFile.java
+++ b/client/src/main/java/org/apache/crail/rpc/RpcRenameFile.java
@@ -1,5 +1,4 @@
 /*
- * Copyright (C) 2015-2018, IBM Corporation
  *
  * Licensed to the Apache Software Foundation (ASF) under one or more
  * contributor license agreements.  See the NOTICE file distributed with

http://git-wip-us.apache.org/repos/asf/incubator-crail/blob/cebc1c3d/client/src/main/java/org/apache/crail/rpc/RpcResponse.java
----------------------------------------------------------------------
diff --git a/client/src/main/java/org/apache/crail/rpc/RpcResponse.java b/client/src/main/java/org/apache/crail/rpc/RpcResponse.java
index 58a266b..194de78 100644
--- a/client/src/main/java/org/apache/crail/rpc/RpcResponse.java
+++ b/client/src/main/java/org/apache/crail/rpc/RpcResponse.java
@@ -1,5 +1,4 @@
 /*
- * Copyright (C) 2015-2018, IBM Corporation
  *
  * Licensed to the Apache Software Foundation (ASF) under one or more
  * contributor license agreements.  See the NOTICE file distributed with

http://git-wip-us.apache.org/repos/asf/incubator-crail/blob/cebc1c3d/client/src/main/java/org/apache/crail/rpc/RpcVoid.java
----------------------------------------------------------------------
diff --git a/client/src/main/java/org/apache/crail/rpc/RpcVoid.java b/client/src/main/java/org/apache/crail/rpc/RpcVoid.java
index 912a981..43e6b89 100644
--- a/client/src/main/java/org/apache/crail/rpc/RpcVoid.java
+++ b/client/src/main/java/org/apache/crail/rpc/RpcVoid.java
@@ -1,5 +1,4 @@
 /*
- * Copyright (C) 2015-2018, IBM Corporation
  *
  * Licensed to the Apache Software Foundation (ASF) under one or more
  * contributor license agreements.  See the NOTICE file distributed with

http://git-wip-us.apache.org/repos/asf/incubator-crail/blob/cebc1c3d/client/src/main/java/org/apache/crail/storage/StorageClient.java
----------------------------------------------------------------------
diff --git a/client/src/main/java/org/apache/crail/storage/StorageClient.java b/client/src/main/java/org/apache/crail/storage/StorageClient.java
index cded48f..3f218c3 100644
--- a/client/src/main/java/org/apache/crail/storage/StorageClient.java
+++ b/client/src/main/java/org/apache/crail/storage/StorageClient.java
@@ -1,5 +1,4 @@
 /*
- * Copyright (C) 2015-2018, IBM Corporation
  *
  * Licensed to the Apache Software Foundation (ASF) under one or more
  * contributor license agreements.  See the NOTICE file distributed with

http://git-wip-us.apache.org/repos/asf/incubator-crail/blob/cebc1c3d/client/src/main/java/org/apache/crail/storage/StorageEndpoint.java
----------------------------------------------------------------------
diff --git a/client/src/main/java/org/apache/crail/storage/StorageEndpoint.java b/client/src/main/java/org/apache/crail/storage/StorageEndpoint.java
index d8019a4..63f0eee 100644
--- a/client/src/main/java/org/apache/crail/storage/StorageEndpoint.java
+++ b/client/src/main/java/org/apache/crail/storage/StorageEndpoint.java
@@ -1,5 +1,4 @@
 /*
- * Copyright (C) 2015-2018, IBM Corporation
  *
  * Licensed to the Apache Software Foundation (ASF) under one or more
  * contributor license agreements.  See the NOTICE file distributed with

http://git-wip-us.apache.org/repos/asf/incubator-crail/blob/cebc1c3d/client/src/main/java/org/apache/crail/storage/StorageFuture.java
----------------------------------------------------------------------
diff --git a/client/src/main/java/org/apache/crail/storage/StorageFuture.java b/client/src/main/java/org/apache/crail/storage/StorageFuture.java
index 19e1c69..5af8fc5 100644
--- a/client/src/main/java/org/apache/crail/storage/StorageFuture.java
+++ b/client/src/main/java/org/apache/crail/storage/StorageFuture.java
@@ -1,5 +1,4 @@
 /*
- * Copyright (C) 2015-2018, IBM Corporation
  *
  * Licensed to the Apache Software Foundation (ASF) under one or more
  * contributor license agreements.  See the NOTICE file distributed with

http://git-wip-us.apache.org/repos/asf/incubator-crail/blob/cebc1c3d/client/src/main/java/org/apache/crail/storage/StorageResult.java
----------------------------------------------------------------------
diff --git a/client/src/main/java/org/apache/crail/storage/StorageResult.java b/client/src/main/java/org/apache/crail/storage/StorageResult.java
index d3b4e4e..98a78ca 100644
--- a/client/src/main/java/org/apache/crail/storage/StorageResult.java
+++ b/client/src/main/java/org/apache/crail/storage/StorageResult.java
@@ -1,5 +1,4 @@
 /*
- * Copyright (C) 2015-2018, IBM Corporation
  *
  * Licensed to the Apache Software Foundation (ASF) under one or more
  * contributor license agreements.  See the NOTICE file distributed with

http://git-wip-us.apache.org/repos/asf/incubator-crail/blob/cebc1c3d/client/src/main/java/org/apache/crail/tools/CrailBenchmark.java
----------------------------------------------------------------------
diff --git a/client/src/main/java/org/apache/crail/tools/CrailBenchmark.java b/client/src/main/java/org/apache/crail/tools/CrailBenchmark.java
index 1493497..76ebc7a 100644
--- a/client/src/main/java/org/apache/crail/tools/CrailBenchmark.java
+++ b/client/src/main/java/org/apache/crail/tools/CrailBenchmark.java
@@ -1,5 +1,4 @@
 /*
- * Copyright (C) 2015-2018, IBM Corporation
  *
  * Licensed to the Apache Software Foundation (ASF) under one or more
  * contributor license agreements.  See the NOTICE file distributed with

http://git-wip-us.apache.org/repos/asf/incubator-crail/blob/cebc1c3d/client/src/main/java/org/apache/crail/tools/CrailFsck.java
----------------------------------------------------------------------
diff --git a/client/src/main/java/org/apache/crail/tools/CrailFsck.java b/client/src/main/java/org/apache/crail/tools/CrailFsck.java
index b24fc47..0b5da83 100644
--- a/client/src/main/java/org/apache/crail/tools/CrailFsck.java
+++ b/client/src/main/java/org/apache/crail/tools/CrailFsck.java
@@ -1,5 +1,4 @@
 /*
- * Copyright (C) 2015-2018, IBM Corporation
  *
  * Licensed to the Apache Software Foundation (ASF) under one or more
  * contributor license agreements.  See the NOTICE file distributed with

http://git-wip-us.apache.org/repos/asf/incubator-crail/blob/cebc1c3d/client/src/main/java/org/apache/crail/utils/AtomicIntegerModulo.java
----------------------------------------------------------------------
diff --git a/client/src/main/java/org/apache/crail/utils/AtomicIntegerModulo.java b/client/src/main/java/org/apache/crail/utils/AtomicIntegerModulo.java
index 3b17ea7..1c27148 100644
--- a/client/src/main/java/org/apache/crail/utils/AtomicIntegerModulo.java
+++ b/client/src/main/java/org/apache/crail/utils/AtomicIntegerModulo.java
@@ -1,5 +1,4 @@
 /*
- * Copyright (C) 2015-2018, IBM Corporation
  *
  * Licensed to the Apache Software Foundation (ASF) under one or more
  * contributor license agreements.  See the NOTICE file distributed with

http://git-wip-us.apache.org/repos/asf/incubator-crail/blob/cebc1c3d/client/src/main/java/org/apache/crail/utils/BlockCache.java
----------------------------------------------------------------------
diff --git a/client/src/main/java/org/apache/crail/utils/BlockCache.java b/client/src/main/java/org/apache/crail/utils/BlockCache.java
index 5bfcb20..9d833b1 100644
--- a/client/src/main/java/org/apache/crail/utils/BlockCache.java
+++ b/client/src/main/java/org/apache/crail/utils/BlockCache.java
@@ -1,5 +1,4 @@
 /*
- * Copyright (C) 2015-2018, IBM Corporation
  *
  * Licensed to the Apache Software Foundation (ASF) under one or more
  * contributor license agreements.  See the NOTICE file distributed with

http://git-wip-us.apache.org/repos/asf/incubator-crail/blob/cebc1c3d/client/src/main/java/org/apache/crail/utils/BufferCheckpoint.java
----------------------------------------------------------------------
diff --git a/client/src/main/java/org/apache/crail/utils/BufferCheckpoint.java b/client/src/main/java/org/apache/crail/utils/BufferCheckpoint.java
index c649945..7b901ab 100644
--- a/client/src/main/java/org/apache/crail/utils/BufferCheckpoint.java
+++ b/client/src/main/java/org/apache/crail/utils/BufferCheckpoint.java
@@ -1,5 +1,4 @@
 /*
- * Copyright (C) 2015-2018, IBM Corporation
  *
  * Licensed to the Apache Software Foundation (ASF) under one or more
  * contributor license agreements.  See the NOTICE file distributed with

http://git-wip-us.apache.org/repos/asf/incubator-crail/blob/cebc1c3d/client/src/main/java/org/apache/crail/utils/CrailImmediateOperation.java
----------------------------------------------------------------------
diff --git a/client/src/main/java/org/apache/crail/utils/CrailImmediateOperation.java b/client/src/main/java/org/apache/crail/utils/CrailImmediateOperation.java
index bde9044..a9f44a3 100644
--- a/client/src/main/java/org/apache/crail/utils/CrailImmediateOperation.java
+++ b/client/src/main/java/org/apache/crail/utils/CrailImmediateOperation.java
@@ -1,5 +1,4 @@
 /*
- * Copyright (C) 2015-2018, IBM Corporation
  *
  * Licensed to the Apache Software Foundation (ASF) under one or more
  * contributor license agreements.  See the NOTICE file distributed with

http://git-wip-us.apache.org/repos/asf/incubator-crail/blob/cebc1c3d/client/src/main/java/org/apache/crail/utils/CrailUtils.java
----------------------------------------------------------------------
diff --git a/client/src/main/java/org/apache/crail/utils/CrailUtils.java b/client/src/main/java/org/apache/crail/utils/CrailUtils.java
index de49d1a..6990b29 100644
--- a/client/src/main/java/org/apache/crail/utils/CrailUtils.java
+++ b/client/src/main/java/org/apache/crail/utils/CrailUtils.java
@@ -1,5 +1,4 @@
 /*
- * Copyright (C) 2015-2018, IBM Corporation
  *
  * Licensed to the Apache Software Foundation (ASF) under one or more
  * contributor license agreements.  See the NOTICE file distributed with

http://git-wip-us.apache.org/repos/asf/incubator-crail/blob/cebc1c3d/client/src/main/java/org/apache/crail/utils/EndpointCache.java
----------------------------------------------------------------------
diff --git a/client/src/main/java/org/apache/crail/utils/EndpointCache.java b/client/src/main/java/org/apache/crail/utils/EndpointCache.java
index c691610..b12f46c 100644
--- a/client/src/main/java/org/apache/crail/utils/EndpointCache.java
+++ b/client/src/main/java/org/apache/crail/utils/EndpointCache.java
@@ -1,5 +1,4 @@
 /*
- * Copyright (C) 2015-2018, IBM Corporation
  *
  * Licensed to the Apache Software Foundation (ASF) under one or more
  * contributor license agreements.  See the NOTICE file distributed with

http://git-wip-us.apache.org/repos/asf/incubator-crail/blob/cebc1c3d/client/src/main/java/org/apache/crail/utils/MultiFuture.java
----------------------------------------------------------------------
diff --git a/client/src/main/java/org/apache/crail/utils/MultiFuture.java b/client/src/main/java/org/apache/crail/utils/MultiFuture.java
index 42624b8..a69e076 100644
--- a/client/src/main/java/org/apache/crail/utils/MultiFuture.java
+++ b/client/src/main/java/org/apache/crail/utils/MultiFuture.java
@@ -1,5 +1,4 @@
 /*
- * Copyright (C) 2015-2018, IBM Corporation
  *
  * Licensed to the Apache Software Foundation (ASF) under one or more
  * contributor license agreements.  See the NOTICE file distributed with

http://git-wip-us.apache.org/repos/asf/incubator-crail/blob/cebc1c3d/client/src/main/java/org/apache/crail/utils/NextBlockCache.java
----------------------------------------------------------------------
diff --git a/client/src/main/java/org/apache/crail/utils/NextBlockCache.java b/client/src/main/java/org/apache/crail/utils/NextBlockCache.java
index f38a191..81bfc0b 100644
--- a/client/src/main/java/org/apache/crail/utils/NextBlockCache.java
+++ b/client/src/main/java/org/apache/crail/utils/NextBlockCache.java
@@ -1,5 +1,4 @@
 /*
- * Copyright (C) 2015-2018, IBM Corporation
  *
  * Licensed to the Apache Software Foundation (ASF) under one or more
  * contributor license agreements.  See the NOTICE file distributed with

http://git-wip-us.apache.org/repos/asf/incubator-crail/blob/cebc1c3d/client/src/main/java/org/apache/crail/utils/RingBuffer.java
----------------------------------------------------------------------
diff --git a/client/src/main/java/org/apache/crail/utils/RingBuffer.java b/client/src/main/java/org/apache/crail/utils/RingBuffer.java
index 547ffa9..46ded87 100644
--- a/client/src/main/java/org/apache/crail/utils/RingBuffer.java
+++ b/client/src/main/java/org/apache/crail/utils/RingBuffer.java
@@ -1,5 +1,4 @@
 /*
- * Copyright (C) 2015-2018, IBM Corporation
  *
  * Licensed to the Apache Software Foundation (ASF) under one or more
  * contributor license agreements.  See the NOTICE file distributed with

http://git-wip-us.apache.org/repos/asf/incubator-crail/blob/cebc1c3d/client/src/test/java/org/apache/crail/ClientTest.java
----------------------------------------------------------------------
diff --git a/client/src/test/java/org/apache/crail/ClientTest.java b/client/src/test/java/org/apache/crail/ClientTest.java
index d01d454..9123cf5 100644
--- a/client/src/test/java/org/apache/crail/ClientTest.java
+++ b/client/src/test/java/org/apache/crail/ClientTest.java
@@ -1,5 +1,4 @@
 /*
- * Copyright (C) 2015-2018, IBM Corporation
  *
  * Licensed to the Apache Software Foundation (ASF) under one or more
  * contributor license agreements.  See the NOTICE file distributed with

http://git-wip-us.apache.org/repos/asf/incubator-crail/blob/cebc1c3d/hdfs/pom.xml
----------------------------------------------------------------------
diff --git a/hdfs/pom.xml b/hdfs/pom.xml
index ba406e6..086cd43 100644
--- a/hdfs/pom.xml
+++ b/hdfs/pom.xml
@@ -1,5 +1,4 @@
 <!--
-  ~ Copyright (C) 2018, IBM Corporation
   ~
   ~ Licensed to the Apache Software Foundation (ASF) under one or more
   ~ contributor license agreements.  See the NOTICE file distributed with

http://git-wip-us.apache.org/repos/asf/incubator-crail/blob/cebc1c3d/hdfs/src/main/java/org/apache/crail/hdfs/CrailHDFS.java
----------------------------------------------------------------------
diff --git a/hdfs/src/main/java/org/apache/crail/hdfs/CrailHDFS.java b/hdfs/src/main/java/org/apache/crail/hdfs/CrailHDFS.java
index 84dd52d..05b1b28 100644
--- a/hdfs/src/main/java/org/apache/crail/hdfs/CrailHDFS.java
+++ b/hdfs/src/main/java/org/apache/crail/hdfs/CrailHDFS.java
@@ -1,5 +1,4 @@
 /*
- * Copyright (C) 2015-2018, IBM Corporation
  *
  * Licensed to the Apache Software Foundation (ASF) under one or more
  * contributor license agreements.  See the NOTICE file distributed with

http://git-wip-us.apache.org/repos/asf/incubator-crail/blob/cebc1c3d/hdfs/src/main/java/org/apache/crail/hdfs/CrailHDFSInputStream.java
----------------------------------------------------------------------
diff --git a/hdfs/src/main/java/org/apache/crail/hdfs/CrailHDFSInputStream.java b/hdfs/src/main/java/org/apache/crail/hdfs/CrailHDFSInputStream.java
index 2163c5f..d90ce81 100644
--- a/hdfs/src/main/java/org/apache/crail/hdfs/CrailHDFSInputStream.java
+++ b/hdfs/src/main/java/org/apache/crail/hdfs/CrailHDFSInputStream.java
@@ -1,5 +1,4 @@
 /*
- * Copyright (C) 2015-2018, IBM Corporation
  *
  * Licensed to the Apache Software Foundation (ASF) under one or more
  * contributor license agreements.  See the NOTICE file distributed with

http://git-wip-us.apache.org/repos/asf/incubator-crail/blob/cebc1c3d/hdfs/src/main/java/org/apache/crail/hdfs/CrailHDFSOutputStream.java
----------------------------------------------------------------------
diff --git a/hdfs/src/main/java/org/apache/crail/hdfs/CrailHDFSOutputStream.java b/hdfs/src/main/java/org/apache/crail/hdfs/CrailHDFSOutputStream.java
index 1b8d082..e1ea5c2 100644
--- a/hdfs/src/main/java/org/apache/crail/hdfs/CrailHDFSOutputStream.java
+++ b/hdfs/src/main/java/org/apache/crail/hdfs/CrailHDFSOutputStream.java
@@ -1,5 +1,4 @@
 /*
- * Copyright (C) 2015-2018, IBM Corporation
  *
  * Licensed to the Apache Software Foundation (ASF) under one or more
  * contributor license agreements.  See the NOTICE file distributed with

http://git-wip-us.apache.org/repos/asf/incubator-crail/blob/cebc1c3d/hdfs/src/main/java/org/apache/crail/hdfs/CrailHadoopFileSystem.java
----------------------------------------------------------------------
diff --git a/hdfs/src/main/java/org/apache/crail/hdfs/CrailHadoopFileSystem.java b/hdfs/src/main/java/org/apache/crail/hdfs/CrailHadoopFileSystem.java
index efcbfa5..257d613 100644
--- a/hdfs/src/main/java/org/apache/crail/hdfs/CrailHadoopFileSystem.java
+++ b/hdfs/src/main/java/org/apache/crail/hdfs/CrailHadoopFileSystem.java
@@ -1,5 +1,4 @@
 /*
- * Copyright (C) 2015-2018, IBM Corporation
  *
  * Licensed to the Apache Software Foundation (ASF) under one or more
  * contributor license agreements.  See the NOTICE file distributed with

http://git-wip-us.apache.org/repos/asf/incubator-crail/blob/cebc1c3d/hdfs/src/main/java/org/apache/crail/hdfs/GetConf.java
----------------------------------------------------------------------
diff --git a/hdfs/src/main/java/org/apache/crail/hdfs/GetConf.java b/hdfs/src/main/java/org/apache/crail/hdfs/GetConf.java
index 50b78d1..35416bf 100644
--- a/hdfs/src/main/java/org/apache/crail/hdfs/GetConf.java
+++ b/hdfs/src/main/java/org/apache/crail/hdfs/GetConf.java
@@ -1,5 +1,4 @@
 /*
- * Copyright (C) 2015-2018, IBM Corporation
  *
  * Licensed to the Apache Software Foundation (ASF) under one or more
  * contributor license agreements.  See the NOTICE file distributed with

http://git-wip-us.apache.org/repos/asf/incubator-crail/blob/cebc1c3d/hdfs/src/main/java/org/apache/crail/hdfs/tools/HdfsIOBenchmark.java
----------------------------------------------------------------------
diff --git a/hdfs/src/main/java/org/apache/crail/hdfs/tools/HdfsIOBenchmark.java b/hdfs/src/main/java/org/apache/crail/hdfs/tools/HdfsIOBenchmark.java
index 6dcfe03..895405a 100644
--- a/hdfs/src/main/java/org/apache/crail/hdfs/tools/HdfsIOBenchmark.java
+++ b/hdfs/src/main/java/org/apache/crail/hdfs/tools/HdfsIOBenchmark.java
@@ -1,5 +1,4 @@
 /*
- * Copyright (C) 2015-2018, IBM Corporation
  *
  * Licensed to the Apache Software Foundation (ASF) under one or more
  * contributor license agreements.  See the NOTICE file distributed with

http://git-wip-us.apache.org/repos/asf/incubator-crail/blob/cebc1c3d/hdfs/src/test/java/org/apache/crail/hdfs/TestCrailHDFSContract.java
----------------------------------------------------------------------
diff --git a/hdfs/src/test/java/org/apache/crail/hdfs/TestCrailHDFSContract.java b/hdfs/src/test/java/org/apache/crail/hdfs/TestCrailHDFSContract.java
index 2f4cf74..b8302a7 100644
--- a/hdfs/src/test/java/org/apache/crail/hdfs/TestCrailHDFSContract.java
+++ b/hdfs/src/test/java/org/apache/crail/hdfs/TestCrailHDFSContract.java
@@ -1,5 +1,4 @@
 /*
- * Copyright (C) 2015-2018, IBM Corporation
  *
  * Licensed to the Apache Software Foundation (ASF) under one or more
  * contributor license agreements.  See the NOTICE file distributed with

http://git-wip-us.apache.org/repos/asf/incubator-crail/blob/cebc1c3d/namenode/pom.xml
----------------------------------------------------------------------
diff --git a/namenode/pom.xml b/namenode/pom.xml
index a79d137..696589f 100644
--- a/namenode/pom.xml
+++ b/namenode/pom.xml
@@ -1,5 +1,4 @@
 <!--
-  ~ Copyright (C) 2018, IBM Corporation
   ~
   ~ Licensed to the Apache Software Foundation (ASF) under one or more
   ~ contributor license agreements.  See the NOTICE file distributed with

http://git-wip-us.apache.org/repos/asf/incubator-crail/blob/cebc1c3d/namenode/src/main/java/org/apache/crail/namenode/AbstractNode.java
----------------------------------------------------------------------
diff --git a/namenode/src/main/java/org/apache/crail/namenode/AbstractNode.java b/namenode/src/main/java/org/apache/crail/namenode/AbstractNode.java
index f8488a5..9525bff 100644
--- a/namenode/src/main/java/org/apache/crail/namenode/AbstractNode.java
+++ b/namenode/src/main/java/org/apache/crail/namenode/AbstractNode.java
@@ -1,5 +1,4 @@
 /*
- * Copyright (C) 2015-2018, IBM Corporation
  *
  * Licensed to the Apache Software Foundation (ASF) under one or more
  * contributor license agreements.  See the NOTICE file distributed with

http://git-wip-us.apache.org/repos/asf/incubator-crail/blob/cebc1c3d/namenode/src/main/java/org/apache/crail/namenode/BlockStore.java
----------------------------------------------------------------------
diff --git a/namenode/src/main/java/org/apache/crail/namenode/BlockStore.java b/namenode/src/main/java/org/apache/crail/namenode/BlockStore.java
index 64545ef..0b98981 100644
--- a/namenode/src/main/java/org/apache/crail/namenode/BlockStore.java
+++ b/namenode/src/main/java/org/apache/crail/namenode/BlockStore.java
@@ -1,5 +1,4 @@
 /*
- * Copyright (C) 2015-2018, IBM Corporation
  *
  * Licensed to the Apache Software Foundation (ASF) under one or more
  * contributor license agreements.  See the NOTICE file distributed with

http://git-wip-us.apache.org/repos/asf/incubator-crail/blob/cebc1c3d/namenode/src/main/java/org/apache/crail/namenode/DataNodeBlocks.java
----------------------------------------------------------------------
diff --git a/namenode/src/main/java/org/apache/crail/namenode/DataNodeBlocks.java b/namenode/src/main/java/org/apache/crail/namenode/DataNodeBlocks.java
index e13b1f4..c91468f 100644
--- a/namenode/src/main/java/org/apache/crail/namenode/DataNodeBlocks.java
+++ b/namenode/src/main/java/org/apache/crail/namenode/DataNodeBlocks.java
@@ -1,5 +1,4 @@
 /*
- * Copyright (C) 2015-2018, IBM Corporation
  *
  * Licensed to the Apache Software Foundation (ASF) under one or more
  * contributor license agreements.  See the NOTICE file distributed with

http://git-wip-us.apache.org/repos/asf/incubator-crail/blob/cebc1c3d/namenode/src/main/java/org/apache/crail/namenode/DirectoryBlocks.java
----------------------------------------------------------------------
diff --git a/namenode/src/main/java/org/apache/crail/namenode/DirectoryBlocks.java b/namenode/src/main/java/org/apache/crail/namenode/DirectoryBlocks.java
index f6f84d8..a899e4e 100644
--- a/namenode/src/main/java/org/apache/crail/namenode/DirectoryBlocks.java
+++ b/namenode/src/main/java/org/apache/crail/namenode/DirectoryBlocks.java
@@ -1,5 +1,4 @@
 /*
- * Copyright (C) 2015-2018, IBM Corporation
  *
  * Licensed to the Apache Software Foundation (ASF) under one or more
  * contributor license agreements.  See the NOTICE file distributed with

http://git-wip-us.apache.org/repos/asf/incubator-crail/blob/cebc1c3d/namenode/src/main/java/org/apache/crail/namenode/FileBlocks.java
----------------------------------------------------------------------
diff --git a/namenode/src/main/java/org/apache/crail/namenode/FileBlocks.java b/namenode/src/main/java/org/apache/crail/namenode/FileBlocks.java
index f046fa5..c4aa337 100644
--- a/namenode/src/main/java/org/apache/crail/namenode/FileBlocks.java
+++ b/namenode/src/main/java/org/apache/crail/namenode/FileBlocks.java
@@ -1,5 +1,4 @@
 /*
- * Copyright (C) 2015-2018, IBM Corporation
  *
  * Licensed to the Apache Software Foundation (ASF) under one or more
  * contributor license agreements.  See the NOTICE file distributed with

http://git-wip-us.apache.org/repos/asf/incubator-crail/blob/cebc1c3d/namenode/src/main/java/org/apache/crail/namenode/FileStore.java
----------------------------------------------------------------------
diff --git a/namenode/src/main/java/org/apache/crail/namenode/FileStore.java b/namenode/src/main/java/org/apache/crail/namenode/FileStore.java
index 66c4953..f98d87e 100644
--- a/namenode/src/main/java/org/apache/crail/namenode/FileStore.java
+++ b/namenode/src/main/java/org/apache/crail/namenode/FileStore.java
@@ -1,5 +1,4 @@
 /*
- * Copyright (C) 2015-2018, IBM Corporation
  *
  * Licensed to the Apache Software Foundation (ASF) under one or more
  * contributor license agreements.  See the NOTICE file distributed with

http://git-wip-us.apache.org/repos/asf/incubator-crail/blob/cebc1c3d/namenode/src/main/java/org/apache/crail/namenode/GCServer.java
----------------------------------------------------------------------
diff --git a/namenode/src/main/java/org/apache/crail/namenode/GCServer.java b/namenode/src/main/java/org/apache/crail/namenode/GCServer.java
index 476880d..174df44 100644
--- a/namenode/src/main/java/org/apache/crail/namenode/GCServer.java
+++ b/namenode/src/main/java/org/apache/crail/namenode/GCServer.java
@@ -1,5 +1,4 @@
 /*
- * Copyright (C) 2015-2018, IBM Corporation
  *
  * Licensed to the Apache Software Foundation (ASF) under one or more
  * contributor license agreements.  See the NOTICE file distributed with

http://git-wip-us.apache.org/repos/asf/incubator-crail/blob/cebc1c3d/namenode/src/main/java/org/apache/crail/namenode/KeyValueBlocks.java
----------------------------------------------------------------------
diff --git a/namenode/src/main/java/org/apache/crail/namenode/KeyValueBlocks.java b/namenode/src/main/java/org/apache/crail/namenode/KeyValueBlocks.java
index 2967079..8c872b3 100644
--- a/namenode/src/main/java/org/apache/crail/namenode/KeyValueBlocks.java
+++ b/namenode/src/main/java/org/apache/crail/namenode/KeyValueBlocks.java
@@ -1,5 +1,4 @@
 /*
- * Copyright (C) 2015-2018, IBM Corporation
  *
  * Licensed to the Apache Software Foundation (ASF) under one or more
  * contributor license agreements.  See the NOTICE file distributed with

http://git-wip-us.apache.org/repos/asf/incubator-crail/blob/cebc1c3d/namenode/src/main/java/org/apache/crail/namenode/LogDispatcher.java
----------------------------------------------------------------------
diff --git a/namenode/src/main/java/org/apache/crail/namenode/LogDispatcher.java b/namenode/src/main/java/org/apache/crail/namenode/LogDispatcher.java
index 56ba23f..7928341 100644
--- a/namenode/src/main/java/org/apache/crail/namenode/LogDispatcher.java
+++ b/namenode/src/main/java/org/apache/crail/namenode/LogDispatcher.java
@@ -1,5 +1,4 @@
 /*
- * Copyright (C) 2015-2018, IBM Corporation
  *
  * Licensed to the Apache Software Foundation (ASF) under one or more
  * contributor license agreements.  See the NOTICE file distributed with



[2/7] incubator-crail git commit: Check licenses with apache-rat

Posted by pe...@apache.org.
Check licenses with apache-rat

Add apache-rat maven plugin to allow to check licenses with
mvn apache-rat:check

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/7c570061
Tree: http://git-wip-us.apache.org/repos/asf/incubator-crail/tree/7c570061
Diff: http://git-wip-us.apache.org/repos/asf/incubator-crail/diff/7c570061

Branch: refs/heads/master
Commit: 7c570061f9f7fa552ef255298ef2b7372a0e03b9
Parents: 823535c
Author: Jonas Pfefferle <pe...@apache.org>
Authored: Fri Apr 13 10:53:59 2018 +0200
Committer: Jonas Pfefferle <pe...@apache.org>
Committed: Fri Apr 13 10:53:59 2018 +0200

----------------------------------------------------------------------
 pom.xml | 22 ++++++++++++++++++++++
 1 file changed, 22 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-crail/blob/7c570061/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index 949b7e3..231575e 100644
--- a/pom.xml
+++ b/pom.xml
@@ -97,6 +97,28 @@
     </dependencies>
   </dependencyManagement>
 
+  <build>
+    <plugins>
+      <plugin>
+        <groupId>org.apache.rat</groupId>
+        <artifactId>apache-rat-plugin</artifactId>
+        <version>0.12</version>
+        <configuration>
+            <licenses>
+                <license implementation="org.apache.rat.analysis.license.SimplePatternBasedLicense">
+                    <licenseFamilyCategory>AL20</licenseFamilyCategory>
+                    <licenseFamilyName>Apache License, 2.0</licenseFamilyName>
+                </license>
+            </licenses>
+            <excludes>
+                <exclude>conf/**/*</exclude>
+                <exclude>**/*.md</exclude>
+            </excludes>
+        </configuration>
+      </plugin>
+    </plugins>
+  </build>
+
   <modules>
     <module>client</module>
     <module>namenode</module>


[4/7] incubator-crail git commit: Move copyright notice to NOTICE file.

Posted by pe...@apache.org.
http://git-wip-us.apache.org/repos/asf/incubator-crail/blob/cebc1c3d/namenode/src/main/java/org/apache/crail/namenode/LogRecord.java
----------------------------------------------------------------------
diff --git a/namenode/src/main/java/org/apache/crail/namenode/LogRecord.java b/namenode/src/main/java/org/apache/crail/namenode/LogRecord.java
index 69c7437..8d7a051 100644
--- a/namenode/src/main/java/org/apache/crail/namenode/LogRecord.java
+++ b/namenode/src/main/java/org/apache/crail/namenode/LogRecord.java
@@ -1,5 +1,4 @@
 /*
- * Copyright (C) 2015-2018, IBM Corporation
  *
  * Licensed to the Apache Software Foundation (ASF) under one or more
  * contributor license agreements.  See the NOTICE file distributed with

http://git-wip-us.apache.org/repos/asf/incubator-crail/blob/cebc1c3d/namenode/src/main/java/org/apache/crail/namenode/LogResponse.java
----------------------------------------------------------------------
diff --git a/namenode/src/main/java/org/apache/crail/namenode/LogResponse.java b/namenode/src/main/java/org/apache/crail/namenode/LogResponse.java
index 1d25dad..b7e8548 100644
--- a/namenode/src/main/java/org/apache/crail/namenode/LogResponse.java
+++ b/namenode/src/main/java/org/apache/crail/namenode/LogResponse.java
@@ -1,5 +1,4 @@
 /*
- * Copyright (C) 2015-2018, IBM Corporation
  *
  * Licensed to the Apache Software Foundation (ASF) under one or more
  * contributor license agreements.  See the NOTICE file distributed with

http://git-wip-us.apache.org/repos/asf/incubator-crail/blob/cebc1c3d/namenode/src/main/java/org/apache/crail/namenode/LogService.java
----------------------------------------------------------------------
diff --git a/namenode/src/main/java/org/apache/crail/namenode/LogService.java b/namenode/src/main/java/org/apache/crail/namenode/LogService.java
index 87aa3cb..2802f09 100644
--- a/namenode/src/main/java/org/apache/crail/namenode/LogService.java
+++ b/namenode/src/main/java/org/apache/crail/namenode/LogService.java
@@ -1,5 +1,4 @@
 /*
- * Copyright (C) 2015-2018, IBM Corporation
  *
  * Licensed to the Apache Software Foundation (ASF) under one or more
  * contributor license agreements.  See the NOTICE file distributed with

http://git-wip-us.apache.org/repos/asf/incubator-crail/blob/cebc1c3d/namenode/src/main/java/org/apache/crail/namenode/MultiFileBlocks.java
----------------------------------------------------------------------
diff --git a/namenode/src/main/java/org/apache/crail/namenode/MultiFileBlocks.java b/namenode/src/main/java/org/apache/crail/namenode/MultiFileBlocks.java
index b118c34..1fc7f52 100644
--- a/namenode/src/main/java/org/apache/crail/namenode/MultiFileBlocks.java
+++ b/namenode/src/main/java/org/apache/crail/namenode/MultiFileBlocks.java
@@ -1,5 +1,4 @@
 /*
- * Copyright (C) 2015-2018, IBM Corporation
  *
  * Licensed to the Apache Software Foundation (ASF) under one or more
  * contributor license agreements.  See the NOTICE file distributed with

http://git-wip-us.apache.org/repos/asf/incubator-crail/blob/cebc1c3d/namenode/src/main/java/org/apache/crail/namenode/NameNode.java
----------------------------------------------------------------------
diff --git a/namenode/src/main/java/org/apache/crail/namenode/NameNode.java b/namenode/src/main/java/org/apache/crail/namenode/NameNode.java
index b542fa6..3ec6db8 100644
--- a/namenode/src/main/java/org/apache/crail/namenode/NameNode.java
+++ b/namenode/src/main/java/org/apache/crail/namenode/NameNode.java
@@ -1,5 +1,4 @@
 /*
- * Copyright (C) 2015-2018, IBM Corporation
  *
  * Licensed to the Apache Software Foundation (ASF) under one or more
  * contributor license agreements.  See the NOTICE file distributed with

http://git-wip-us.apache.org/repos/asf/incubator-crail/blob/cebc1c3d/namenode/src/main/java/org/apache/crail/namenode/NameNodeBlockInfo.java
----------------------------------------------------------------------
diff --git a/namenode/src/main/java/org/apache/crail/namenode/NameNodeBlockInfo.java b/namenode/src/main/java/org/apache/crail/namenode/NameNodeBlockInfo.java
index 2dd1cdf..da27a59 100644
--- a/namenode/src/main/java/org/apache/crail/namenode/NameNodeBlockInfo.java
+++ b/namenode/src/main/java/org/apache/crail/namenode/NameNodeBlockInfo.java
@@ -1,5 +1,4 @@
 /*
- * Copyright (C) 2015-2018, IBM Corporation
  *
  * Licensed to the Apache Software Foundation (ASF) under one or more
  * contributor license agreements.  See the NOTICE file distributed with

http://git-wip-us.apache.org/repos/asf/incubator-crail/blob/cebc1c3d/namenode/src/main/java/org/apache/crail/namenode/NameNodeService.java
----------------------------------------------------------------------
diff --git a/namenode/src/main/java/org/apache/crail/namenode/NameNodeService.java b/namenode/src/main/java/org/apache/crail/namenode/NameNodeService.java
index 0157bdd..29d54d2 100644
--- a/namenode/src/main/java/org/apache/crail/namenode/NameNodeService.java
+++ b/namenode/src/main/java/org/apache/crail/namenode/NameNodeService.java
@@ -1,5 +1,4 @@
 /*
- * Copyright (C) 2015-2018, IBM Corporation
  *
  * Licensed to the Apache Software Foundation (ASF) under one or more
  * contributor license agreements.  See the NOTICE file distributed with

http://git-wip-us.apache.org/repos/asf/incubator-crail/blob/cebc1c3d/namenode/src/main/java/org/apache/crail/namenode/Sequencer.java
----------------------------------------------------------------------
diff --git a/namenode/src/main/java/org/apache/crail/namenode/Sequencer.java b/namenode/src/main/java/org/apache/crail/namenode/Sequencer.java
index afecd89..cfb9319 100644
--- a/namenode/src/main/java/org/apache/crail/namenode/Sequencer.java
+++ b/namenode/src/main/java/org/apache/crail/namenode/Sequencer.java
@@ -1,5 +1,4 @@
 /*
- * Copyright (C) 2015-2018, IBM Corporation
  *
  * Licensed to the Apache Software Foundation (ASF) under one or more
  * contributor license agreements.  See the NOTICE file distributed with

http://git-wip-us.apache.org/repos/asf/incubator-crail/blob/cebc1c3d/namenode/src/main/java/org/apache/crail/namenode/TableBlocks.java
----------------------------------------------------------------------
diff --git a/namenode/src/main/java/org/apache/crail/namenode/TableBlocks.java b/namenode/src/main/java/org/apache/crail/namenode/TableBlocks.java
index 6bb831d..99ac7cc 100644
--- a/namenode/src/main/java/org/apache/crail/namenode/TableBlocks.java
+++ b/namenode/src/main/java/org/apache/crail/namenode/TableBlocks.java
@@ -1,5 +1,4 @@
 /*
- * Copyright (C) 2015-2018, IBM Corporation
  *
  * Licensed to the Apache Software Foundation (ASF) under one or more
  * contributor license agreements.  See the NOTICE file distributed with

http://git-wip-us.apache.org/repos/asf/incubator-crail/blob/cebc1c3d/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index 231575e..54914ea 100644
--- a/pom.xml
+++ b/pom.xml
@@ -1,5 +1,4 @@
 <!--
-  ~ Copyright (C) 2018, IBM Corporation
   ~
   ~ Licensed to the Apache Software Foundation (ASF) under one or more
   ~ contributor license agreements.  See the NOTICE file distributed with

http://git-wip-us.apache.org/repos/asf/incubator-crail/blob/cebc1c3d/rpc-darpc/pom.xml
----------------------------------------------------------------------
diff --git a/rpc-darpc/pom.xml b/rpc-darpc/pom.xml
index ecec05e..034acac 100644
--- a/rpc-darpc/pom.xml
+++ b/rpc-darpc/pom.xml
@@ -1,5 +1,4 @@
 <!--
-  ~ Copyright (C) 2018, IBM Corporation
   ~
   ~ Licensed to the Apache Software Foundation (ASF) under one or more
   ~ contributor license agreements.  See the NOTICE file distributed with

http://git-wip-us.apache.org/repos/asf/incubator-crail/blob/cebc1c3d/rpc-darpc/src/main/java/org/apache/crail/namenode/rpc/darpc/DaRPCConstants.java
----------------------------------------------------------------------
diff --git a/rpc-darpc/src/main/java/org/apache/crail/namenode/rpc/darpc/DaRPCConstants.java b/rpc-darpc/src/main/java/org/apache/crail/namenode/rpc/darpc/DaRPCConstants.java
index a77b6a2..404dc95 100644
--- a/rpc-darpc/src/main/java/org/apache/crail/namenode/rpc/darpc/DaRPCConstants.java
+++ b/rpc-darpc/src/main/java/org/apache/crail/namenode/rpc/darpc/DaRPCConstants.java
@@ -1,5 +1,4 @@
 /*
- * Copyright (C) 2015-2018, IBM Corporation
  *
  * Licensed to the Apache Software Foundation (ASF) under one or more
  * contributor license agreements.  See the NOTICE file distributed with

http://git-wip-us.apache.org/repos/asf/incubator-crail/blob/cebc1c3d/rpc-darpc/src/main/java/org/apache/crail/namenode/rpc/darpc/DaRPCNameNode.java
----------------------------------------------------------------------
diff --git a/rpc-darpc/src/main/java/org/apache/crail/namenode/rpc/darpc/DaRPCNameNode.java b/rpc-darpc/src/main/java/org/apache/crail/namenode/rpc/darpc/DaRPCNameNode.java
index 388bee4..6501a3d 100644
--- a/rpc-darpc/src/main/java/org/apache/crail/namenode/rpc/darpc/DaRPCNameNode.java
+++ b/rpc-darpc/src/main/java/org/apache/crail/namenode/rpc/darpc/DaRPCNameNode.java
@@ -1,5 +1,4 @@
 /*
- * Copyright (C) 2015-2018, IBM Corporation
  *
  * Licensed to the Apache Software Foundation (ASF) under one or more
  * contributor license agreements.  See the NOTICE file distributed with

http://git-wip-us.apache.org/repos/asf/incubator-crail/blob/cebc1c3d/rpc-darpc/src/main/java/org/apache/crail/namenode/rpc/darpc/DaRPCNameNodeClient.java
----------------------------------------------------------------------
diff --git a/rpc-darpc/src/main/java/org/apache/crail/namenode/rpc/darpc/DaRPCNameNodeClient.java b/rpc-darpc/src/main/java/org/apache/crail/namenode/rpc/darpc/DaRPCNameNodeClient.java
index 6151171..3e3c468 100644
--- a/rpc-darpc/src/main/java/org/apache/crail/namenode/rpc/darpc/DaRPCNameNodeClient.java
+++ b/rpc-darpc/src/main/java/org/apache/crail/namenode/rpc/darpc/DaRPCNameNodeClient.java
@@ -1,5 +1,4 @@
 /*
- * Copyright (C) 2015-2018, IBM Corporation
  *
  * Licensed to the Apache Software Foundation (ASF) under one or more
  * contributor license agreements.  See the NOTICE file distributed with

http://git-wip-us.apache.org/repos/asf/incubator-crail/blob/cebc1c3d/rpc-darpc/src/main/java/org/apache/crail/namenode/rpc/darpc/DaRPCNameNodeConnection.java
----------------------------------------------------------------------
diff --git a/rpc-darpc/src/main/java/org/apache/crail/namenode/rpc/darpc/DaRPCNameNodeConnection.java b/rpc-darpc/src/main/java/org/apache/crail/namenode/rpc/darpc/DaRPCNameNodeConnection.java
index d5f8ece..26409f7 100644
--- a/rpc-darpc/src/main/java/org/apache/crail/namenode/rpc/darpc/DaRPCNameNodeConnection.java
+++ b/rpc-darpc/src/main/java/org/apache/crail/namenode/rpc/darpc/DaRPCNameNodeConnection.java
@@ -1,5 +1,4 @@
 /*
- * Copyright (C) 2015-2018, IBM Corporation
  *
  * Licensed to the Apache Software Foundation (ASF) under one or more
  * contributor license agreements.  See the NOTICE file distributed with

http://git-wip-us.apache.org/repos/asf/incubator-crail/blob/cebc1c3d/rpc-darpc/src/main/java/org/apache/crail/namenode/rpc/darpc/DaRPCNameNodeFuture.java
----------------------------------------------------------------------
diff --git a/rpc-darpc/src/main/java/org/apache/crail/namenode/rpc/darpc/DaRPCNameNodeFuture.java b/rpc-darpc/src/main/java/org/apache/crail/namenode/rpc/darpc/DaRPCNameNodeFuture.java
index 3d923e7..4529d42 100644
--- a/rpc-darpc/src/main/java/org/apache/crail/namenode/rpc/darpc/DaRPCNameNodeFuture.java
+++ b/rpc-darpc/src/main/java/org/apache/crail/namenode/rpc/darpc/DaRPCNameNodeFuture.java
@@ -1,5 +1,4 @@
 /*
- * Copyright (C) 2015-2018, IBM Corporation
  *
  * Licensed to the Apache Software Foundation (ASF) under one or more
  * contributor license agreements.  See the NOTICE file distributed with

http://git-wip-us.apache.org/repos/asf/incubator-crail/blob/cebc1c3d/rpc-darpc/src/main/java/org/apache/crail/namenode/rpc/darpc/DaRPCNameNodeProtocol.java
----------------------------------------------------------------------
diff --git a/rpc-darpc/src/main/java/org/apache/crail/namenode/rpc/darpc/DaRPCNameNodeProtocol.java b/rpc-darpc/src/main/java/org/apache/crail/namenode/rpc/darpc/DaRPCNameNodeProtocol.java
index 8c5258f..451642f 100644
--- a/rpc-darpc/src/main/java/org/apache/crail/namenode/rpc/darpc/DaRPCNameNodeProtocol.java
+++ b/rpc-darpc/src/main/java/org/apache/crail/namenode/rpc/darpc/DaRPCNameNodeProtocol.java
@@ -1,5 +1,4 @@
 /*
- * Copyright (C) 2015-2018, IBM Corporation
  *
  * Licensed to the Apache Software Foundation (ASF) under one or more
  * contributor license agreements.  See the NOTICE file distributed with

http://git-wip-us.apache.org/repos/asf/incubator-crail/blob/cebc1c3d/rpc-darpc/src/main/java/org/apache/crail/namenode/rpc/darpc/DaRPCNameNodeRequest.java
----------------------------------------------------------------------
diff --git a/rpc-darpc/src/main/java/org/apache/crail/namenode/rpc/darpc/DaRPCNameNodeRequest.java b/rpc-darpc/src/main/java/org/apache/crail/namenode/rpc/darpc/DaRPCNameNodeRequest.java
index 8a990b6..f87ba9d 100644
--- a/rpc-darpc/src/main/java/org/apache/crail/namenode/rpc/darpc/DaRPCNameNodeRequest.java
+++ b/rpc-darpc/src/main/java/org/apache/crail/namenode/rpc/darpc/DaRPCNameNodeRequest.java
@@ -1,5 +1,4 @@
 /*
- * Copyright (C) 2015-2018, IBM Corporation
  *
  * Licensed to the Apache Software Foundation (ASF) under one or more
  * contributor license agreements.  See the NOTICE file distributed with

http://git-wip-us.apache.org/repos/asf/incubator-crail/blob/cebc1c3d/rpc-darpc/src/main/java/org/apache/crail/namenode/rpc/darpc/DaRPCNameNodeResponse.java
----------------------------------------------------------------------
diff --git a/rpc-darpc/src/main/java/org/apache/crail/namenode/rpc/darpc/DaRPCNameNodeResponse.java b/rpc-darpc/src/main/java/org/apache/crail/namenode/rpc/darpc/DaRPCNameNodeResponse.java
index 0fa6f8e..a4e75f4 100644
--- a/rpc-darpc/src/main/java/org/apache/crail/namenode/rpc/darpc/DaRPCNameNodeResponse.java
+++ b/rpc-darpc/src/main/java/org/apache/crail/namenode/rpc/darpc/DaRPCNameNodeResponse.java
@@ -1,5 +1,4 @@
 /*
- * Copyright (C) 2015-2018, IBM Corporation
  *
  * Licensed to the Apache Software Foundation (ASF) under one or more
  * contributor license agreements.  See the NOTICE file distributed with

http://git-wip-us.apache.org/repos/asf/incubator-crail/blob/cebc1c3d/rpc-darpc/src/main/java/org/apache/crail/namenode/rpc/darpc/DaRPCNameNodeServer.java
----------------------------------------------------------------------
diff --git a/rpc-darpc/src/main/java/org/apache/crail/namenode/rpc/darpc/DaRPCNameNodeServer.java b/rpc-darpc/src/main/java/org/apache/crail/namenode/rpc/darpc/DaRPCNameNodeServer.java
index 1121de9..3a93ec2 100644
--- a/rpc-darpc/src/main/java/org/apache/crail/namenode/rpc/darpc/DaRPCNameNodeServer.java
+++ b/rpc-darpc/src/main/java/org/apache/crail/namenode/rpc/darpc/DaRPCNameNodeServer.java
@@ -1,5 +1,4 @@
 /*
- * Copyright (C) 2015-2018, IBM Corporation
  *
  * Licensed to the Apache Software Foundation (ASF) under one or more
  * contributor license agreements.  See the NOTICE file distributed with

http://git-wip-us.apache.org/repos/asf/incubator-crail/blob/cebc1c3d/rpc-darpc/src/main/java/org/apache/crail/namenode/rpc/darpc/DaRPCServiceDispatcher.java
----------------------------------------------------------------------
diff --git a/rpc-darpc/src/main/java/org/apache/crail/namenode/rpc/darpc/DaRPCServiceDispatcher.java b/rpc-darpc/src/main/java/org/apache/crail/namenode/rpc/darpc/DaRPCServiceDispatcher.java
index 9fc2a3b..89a1e2c 100644
--- a/rpc-darpc/src/main/java/org/apache/crail/namenode/rpc/darpc/DaRPCServiceDispatcher.java
+++ b/rpc-darpc/src/main/java/org/apache/crail/namenode/rpc/darpc/DaRPCServiceDispatcher.java
@@ -1,5 +1,4 @@
 /*
- * Copyright (C) 2015-2018, IBM Corporation
  *
  * Licensed to the Apache Software Foundation (ASF) under one or more
  * contributor license agreements.  See the NOTICE file distributed with

http://git-wip-us.apache.org/repos/asf/incubator-crail/blob/cebc1c3d/rpc-narpc/pom.xml
----------------------------------------------------------------------
diff --git a/rpc-narpc/pom.xml b/rpc-narpc/pom.xml
index 6bcc861..a0724c0 100644
--- a/rpc-narpc/pom.xml
+++ b/rpc-narpc/pom.xml
@@ -1,5 +1,4 @@
 <!--
-  ~ Copyright (C) 2018, IBM Corporation
   ~
   ~ Licensed to the Apache Software Foundation (ASF) under one or more
   ~ contributor license agreements.  See the NOTICE file distributed with

http://git-wip-us.apache.org/repos/asf/incubator-crail/blob/cebc1c3d/rpc-narpc/src/main/assembly/assembly.xml
----------------------------------------------------------------------
diff --git a/rpc-narpc/src/main/assembly/assembly.xml b/rpc-narpc/src/main/assembly/assembly.xml
index 2e2a8d8..ede95fc 100644
--- a/rpc-narpc/src/main/assembly/assembly.xml
+++ b/rpc-narpc/src/main/assembly/assembly.xml
@@ -1,5 +1,4 @@
 <!--
-  ~ Copyright (C) 2018, IBM Corporation
   ~
   ~ Licensed to the Apache Software Foundation (ASF) under one or more
   ~ contributor license agreements.  See the NOTICE file distributed with

http://git-wip-us.apache.org/repos/asf/incubator-crail/blob/cebc1c3d/rpc-narpc/src/main/java/org/apache/crail/namenode/rpc/tcp/TcpFuture.java
----------------------------------------------------------------------
diff --git a/rpc-narpc/src/main/java/org/apache/crail/namenode/rpc/tcp/TcpFuture.java b/rpc-narpc/src/main/java/org/apache/crail/namenode/rpc/tcp/TcpFuture.java
index afe4cd1..985bba0 100644
--- a/rpc-narpc/src/main/java/org/apache/crail/namenode/rpc/tcp/TcpFuture.java
+++ b/rpc-narpc/src/main/java/org/apache/crail/namenode/rpc/tcp/TcpFuture.java
@@ -1,5 +1,4 @@
 /*
- * Copyright (C) 2015-2018, IBM Corporation
  *
  * Licensed to the Apache Software Foundation (ASF) under one or more
  * contributor license agreements.  See the NOTICE file distributed with

http://git-wip-us.apache.org/repos/asf/incubator-crail/blob/cebc1c3d/rpc-narpc/src/main/java/org/apache/crail/namenode/rpc/tcp/TcpNameNode.java
----------------------------------------------------------------------
diff --git a/rpc-narpc/src/main/java/org/apache/crail/namenode/rpc/tcp/TcpNameNode.java b/rpc-narpc/src/main/java/org/apache/crail/namenode/rpc/tcp/TcpNameNode.java
index ddd2b2c..1115541 100644
--- a/rpc-narpc/src/main/java/org/apache/crail/namenode/rpc/tcp/TcpNameNode.java
+++ b/rpc-narpc/src/main/java/org/apache/crail/namenode/rpc/tcp/TcpNameNode.java
@@ -1,5 +1,4 @@
 /*
- * Copyright (C) 2015-2018, IBM Corporation
  *
  * Licensed to the Apache Software Foundation (ASF) under one or more
  * contributor license agreements.  See the NOTICE file distributed with

http://git-wip-us.apache.org/repos/asf/incubator-crail/blob/cebc1c3d/rpc-narpc/src/main/java/org/apache/crail/namenode/rpc/tcp/TcpNameNodeClient.java
----------------------------------------------------------------------
diff --git a/rpc-narpc/src/main/java/org/apache/crail/namenode/rpc/tcp/TcpNameNodeClient.java b/rpc-narpc/src/main/java/org/apache/crail/namenode/rpc/tcp/TcpNameNodeClient.java
index 5333a46..d27552c 100644
--- a/rpc-narpc/src/main/java/org/apache/crail/namenode/rpc/tcp/TcpNameNodeClient.java
+++ b/rpc-narpc/src/main/java/org/apache/crail/namenode/rpc/tcp/TcpNameNodeClient.java
@@ -1,5 +1,4 @@
 /*
- * Copyright (C) 2015-2018, IBM Corporation
  *
  * Licensed to the Apache Software Foundation (ASF) under one or more
  * contributor license agreements.  See the NOTICE file distributed with

http://git-wip-us.apache.org/repos/asf/incubator-crail/blob/cebc1c3d/rpc-narpc/src/main/java/org/apache/crail/namenode/rpc/tcp/TcpNameNodeRequest.java
----------------------------------------------------------------------
diff --git a/rpc-narpc/src/main/java/org/apache/crail/namenode/rpc/tcp/TcpNameNodeRequest.java b/rpc-narpc/src/main/java/org/apache/crail/namenode/rpc/tcp/TcpNameNodeRequest.java
index b1598be..d22e09a 100644
--- a/rpc-narpc/src/main/java/org/apache/crail/namenode/rpc/tcp/TcpNameNodeRequest.java
+++ b/rpc-narpc/src/main/java/org/apache/crail/namenode/rpc/tcp/TcpNameNodeRequest.java
@@ -1,5 +1,4 @@
 /*
- * Copyright (C) 2015-2018, IBM Corporation
  *
  * Licensed to the Apache Software Foundation (ASF) under one or more
  * contributor license agreements.  See the NOTICE file distributed with

http://git-wip-us.apache.org/repos/asf/incubator-crail/blob/cebc1c3d/rpc-narpc/src/main/java/org/apache/crail/namenode/rpc/tcp/TcpNameNodeResponse.java
----------------------------------------------------------------------
diff --git a/rpc-narpc/src/main/java/org/apache/crail/namenode/rpc/tcp/TcpNameNodeResponse.java b/rpc-narpc/src/main/java/org/apache/crail/namenode/rpc/tcp/TcpNameNodeResponse.java
index fc83c5a..73912df 100644
--- a/rpc-narpc/src/main/java/org/apache/crail/namenode/rpc/tcp/TcpNameNodeResponse.java
+++ b/rpc-narpc/src/main/java/org/apache/crail/namenode/rpc/tcp/TcpNameNodeResponse.java
@@ -1,5 +1,4 @@
 /*
- * Copyright (C) 2015-2018, IBM Corporation
  *
  * Licensed to the Apache Software Foundation (ASF) under one or more
  * contributor license agreements.  See the NOTICE file distributed with

http://git-wip-us.apache.org/repos/asf/incubator-crail/blob/cebc1c3d/rpc-narpc/src/main/java/org/apache/crail/namenode/rpc/tcp/TcpNameNodeServer.java
----------------------------------------------------------------------
diff --git a/rpc-narpc/src/main/java/org/apache/crail/namenode/rpc/tcp/TcpNameNodeServer.java b/rpc-narpc/src/main/java/org/apache/crail/namenode/rpc/tcp/TcpNameNodeServer.java
index 60b1833..f9dfa46 100644
--- a/rpc-narpc/src/main/java/org/apache/crail/namenode/rpc/tcp/TcpNameNodeServer.java
+++ b/rpc-narpc/src/main/java/org/apache/crail/namenode/rpc/tcp/TcpNameNodeServer.java
@@ -1,5 +1,4 @@
 /*
- * Copyright (C) 2015-2018, IBM Corporation
  *
  * Licensed to the Apache Software Foundation (ASF) under one or more
  * contributor license agreements.  See the NOTICE file distributed with

http://git-wip-us.apache.org/repos/asf/incubator-crail/blob/cebc1c3d/rpc-narpc/src/main/java/org/apache/crail/namenode/rpc/tcp/TcpRpcConnection.java
----------------------------------------------------------------------
diff --git a/rpc-narpc/src/main/java/org/apache/crail/namenode/rpc/tcp/TcpRpcConnection.java b/rpc-narpc/src/main/java/org/apache/crail/namenode/rpc/tcp/TcpRpcConnection.java
index c955301..decdf1c 100644
--- a/rpc-narpc/src/main/java/org/apache/crail/namenode/rpc/tcp/TcpRpcConnection.java
+++ b/rpc-narpc/src/main/java/org/apache/crail/namenode/rpc/tcp/TcpRpcConnection.java
@@ -1,5 +1,4 @@
 /*
- * Copyright (C) 2015-2018, IBM Corporation
  *
  * Licensed to the Apache Software Foundation (ASF) under one or more
  * contributor license agreements.  See the NOTICE file distributed with

http://git-wip-us.apache.org/repos/asf/incubator-crail/blob/cebc1c3d/rpc-narpc/src/main/java/org/apache/crail/namenode/rpc/tcp/TcpRpcConstants.java
----------------------------------------------------------------------
diff --git a/rpc-narpc/src/main/java/org/apache/crail/namenode/rpc/tcp/TcpRpcConstants.java b/rpc-narpc/src/main/java/org/apache/crail/namenode/rpc/tcp/TcpRpcConstants.java
index 05a0b10..e74b8a0 100644
--- a/rpc-narpc/src/main/java/org/apache/crail/namenode/rpc/tcp/TcpRpcConstants.java
+++ b/rpc-narpc/src/main/java/org/apache/crail/namenode/rpc/tcp/TcpRpcConstants.java
@@ -1,5 +1,4 @@
 /*
- * Copyright (C) 2015-2018, IBM Corporation
  *
  * Licensed to the Apache Software Foundation (ASF) under one or more
  * contributor license agreements.  See the NOTICE file distributed with

http://git-wip-us.apache.org/repos/asf/incubator-crail/blob/cebc1c3d/rpc-narpc/src/main/java/org/apache/crail/namenode/rpc/tcp/TcpRpcDispatcher.java
----------------------------------------------------------------------
diff --git a/rpc-narpc/src/main/java/org/apache/crail/namenode/rpc/tcp/TcpRpcDispatcher.java b/rpc-narpc/src/main/java/org/apache/crail/namenode/rpc/tcp/TcpRpcDispatcher.java
index 6c5f43e..8f1aff0 100644
--- a/rpc-narpc/src/main/java/org/apache/crail/namenode/rpc/tcp/TcpRpcDispatcher.java
+++ b/rpc-narpc/src/main/java/org/apache/crail/namenode/rpc/tcp/TcpRpcDispatcher.java
@@ -1,5 +1,4 @@
 /*
- * Copyright (C) 2015-2018, IBM Corporation
  *
  * Licensed to the Apache Software Foundation (ASF) under one or more
  * contributor license agreements.  See the NOTICE file distributed with

http://git-wip-us.apache.org/repos/asf/incubator-crail/blob/cebc1c3d/rpc/pom.xml
----------------------------------------------------------------------
diff --git a/rpc/pom.xml b/rpc/pom.xml
index 2e4d278..550b28a 100644
--- a/rpc/pom.xml
+++ b/rpc/pom.xml
@@ -1,5 +1,4 @@
 <!--
-  ~ Copyright (C) 2018, IBM Corporation
   ~
   ~ Licensed to the Apache Software Foundation (ASF) under one or more
   ~ contributor license agreements.  See the NOTICE file distributed with

http://git-wip-us.apache.org/repos/asf/incubator-crail/blob/cebc1c3d/rpc/src/main/java/org/apache/crail/rpc/RpcBinding.java
----------------------------------------------------------------------
diff --git a/rpc/src/main/java/org/apache/crail/rpc/RpcBinding.java b/rpc/src/main/java/org/apache/crail/rpc/RpcBinding.java
index 7dcc614..7fffcda 100644
--- a/rpc/src/main/java/org/apache/crail/rpc/RpcBinding.java
+++ b/rpc/src/main/java/org/apache/crail/rpc/RpcBinding.java
@@ -1,5 +1,4 @@
 /*
- * Copyright (C) 2015-2018, IBM Corporation
  *
  * Licensed to the Apache Software Foundation (ASF) under one or more
  * contributor license agreements.  See the NOTICE file distributed with

http://git-wip-us.apache.org/repos/asf/incubator-crail/blob/cebc1c3d/rpc/src/main/java/org/apache/crail/rpc/RpcNameNodeService.java
----------------------------------------------------------------------
diff --git a/rpc/src/main/java/org/apache/crail/rpc/RpcNameNodeService.java b/rpc/src/main/java/org/apache/crail/rpc/RpcNameNodeService.java
index 8c657c6..54dc7a8 100644
--- a/rpc/src/main/java/org/apache/crail/rpc/RpcNameNodeService.java
+++ b/rpc/src/main/java/org/apache/crail/rpc/RpcNameNodeService.java
@@ -1,5 +1,4 @@
 /*
- * Copyright (C) 2015-2018, IBM Corporation
  *
  * Licensed to the Apache Software Foundation (ASF) under one or more
  * contributor license agreements.  See the NOTICE file distributed with

http://git-wip-us.apache.org/repos/asf/incubator-crail/blob/cebc1c3d/rpc/src/main/java/org/apache/crail/rpc/RpcNameNodeState.java
----------------------------------------------------------------------
diff --git a/rpc/src/main/java/org/apache/crail/rpc/RpcNameNodeState.java b/rpc/src/main/java/org/apache/crail/rpc/RpcNameNodeState.java
index 3fb3b77..8c2d075 100644
--- a/rpc/src/main/java/org/apache/crail/rpc/RpcNameNodeState.java
+++ b/rpc/src/main/java/org/apache/crail/rpc/RpcNameNodeState.java
@@ -1,5 +1,4 @@
 /*
- * Copyright (C) 2015-2018, IBM Corporation
  *
  * Licensed to the Apache Software Foundation (ASF) under one or more
  * contributor license agreements.  See the NOTICE file distributed with

http://git-wip-us.apache.org/repos/asf/incubator-crail/blob/cebc1c3d/rpc/src/main/java/org/apache/crail/rpc/RpcProtocol.java
----------------------------------------------------------------------
diff --git a/rpc/src/main/java/org/apache/crail/rpc/RpcProtocol.java b/rpc/src/main/java/org/apache/crail/rpc/RpcProtocol.java
index 132e40f..d5a339d 100644
--- a/rpc/src/main/java/org/apache/crail/rpc/RpcProtocol.java
+++ b/rpc/src/main/java/org/apache/crail/rpc/RpcProtocol.java
@@ -1,5 +1,4 @@
 /*
- * Copyright (C) 2015-2018, IBM Corporation
  *
  * Licensed to the Apache Software Foundation (ASF) under one or more
  * contributor license agreements.  See the NOTICE file distributed with

http://git-wip-us.apache.org/repos/asf/incubator-crail/blob/cebc1c3d/rpc/src/main/java/org/apache/crail/rpc/RpcRequestMessage.java
----------------------------------------------------------------------
diff --git a/rpc/src/main/java/org/apache/crail/rpc/RpcRequestMessage.java b/rpc/src/main/java/org/apache/crail/rpc/RpcRequestMessage.java
index 3e05d45..be043a2 100644
--- a/rpc/src/main/java/org/apache/crail/rpc/RpcRequestMessage.java
+++ b/rpc/src/main/java/org/apache/crail/rpc/RpcRequestMessage.java
@@ -1,5 +1,4 @@
 /*
- * Copyright (C) 2015-2018, IBM Corporation
  *
  * Licensed to the Apache Software Foundation (ASF) under one or more
  * contributor license agreements.  See the NOTICE file distributed with

http://git-wip-us.apache.org/repos/asf/incubator-crail/blob/cebc1c3d/rpc/src/main/java/org/apache/crail/rpc/RpcResponseMessage.java
----------------------------------------------------------------------
diff --git a/rpc/src/main/java/org/apache/crail/rpc/RpcResponseMessage.java b/rpc/src/main/java/org/apache/crail/rpc/RpcResponseMessage.java
index 7b9d000..d4175af 100644
--- a/rpc/src/main/java/org/apache/crail/rpc/RpcResponseMessage.java
+++ b/rpc/src/main/java/org/apache/crail/rpc/RpcResponseMessage.java
@@ -1,5 +1,4 @@
 /*
- * Copyright (C) 2015-2018, IBM Corporation
  *
  * Licensed to the Apache Software Foundation (ASF) under one or more
  * contributor license agreements.  See the NOTICE file distributed with

http://git-wip-us.apache.org/repos/asf/incubator-crail/blob/cebc1c3d/rpc/src/main/java/org/apache/crail/rpc/RpcServer.java
----------------------------------------------------------------------
diff --git a/rpc/src/main/java/org/apache/crail/rpc/RpcServer.java b/rpc/src/main/java/org/apache/crail/rpc/RpcServer.java
index 77a481f..2f6206f 100644
--- a/rpc/src/main/java/org/apache/crail/rpc/RpcServer.java
+++ b/rpc/src/main/java/org/apache/crail/rpc/RpcServer.java
@@ -1,5 +1,4 @@
 /*
- * Copyright (C) 2015-2018, IBM Corporation
  *
  * Licensed to the Apache Software Foundation (ASF) under one or more
  * contributor license agreements.  See the NOTICE file distributed with

http://git-wip-us.apache.org/repos/asf/incubator-crail/blob/cebc1c3d/storage-narpc/pom.xml
----------------------------------------------------------------------
diff --git a/storage-narpc/pom.xml b/storage-narpc/pom.xml
index 51b11b1..f527a90 100644
--- a/storage-narpc/pom.xml
+++ b/storage-narpc/pom.xml
@@ -1,5 +1,4 @@
 <!--
-  ~ Copyright (C) 2018, IBM Corporation
   ~
   ~ Licensed to the Apache Software Foundation (ASF) under one or more
   ~ contributor license agreements.  See the NOTICE file distributed with

http://git-wip-us.apache.org/repos/asf/incubator-crail/blob/cebc1c3d/storage-narpc/src/main/assembly/assembly.xml
----------------------------------------------------------------------
diff --git a/storage-narpc/src/main/assembly/assembly.xml b/storage-narpc/src/main/assembly/assembly.xml
index 8a2f74d..40a9b01 100644
--- a/storage-narpc/src/main/assembly/assembly.xml
+++ b/storage-narpc/src/main/assembly/assembly.xml
@@ -1,5 +1,4 @@
 <!--
-  ~ Copyright (C) 2018, IBM Corporation
   ~
   ~ Licensed to the Apache Software Foundation (ASF) under one or more
   ~ contributor license agreements.  See the NOTICE file distributed with

http://git-wip-us.apache.org/repos/asf/incubator-crail/blob/cebc1c3d/storage-narpc/src/main/java/org/apache/crail/storage/tcp/TcpStorageClient.java
----------------------------------------------------------------------
diff --git a/storage-narpc/src/main/java/org/apache/crail/storage/tcp/TcpStorageClient.java b/storage-narpc/src/main/java/org/apache/crail/storage/tcp/TcpStorageClient.java
index 2a526fb..874b8ce 100644
--- a/storage-narpc/src/main/java/org/apache/crail/storage/tcp/TcpStorageClient.java
+++ b/storage-narpc/src/main/java/org/apache/crail/storage/tcp/TcpStorageClient.java
@@ -1,5 +1,4 @@
 /*
- * Copyright (C) 2015-2018, IBM Corporation
  *
  * Licensed to the Apache Software Foundation (ASF) under one or more
  * contributor license agreements.  See the NOTICE file distributed with

http://git-wip-us.apache.org/repos/asf/incubator-crail/blob/cebc1c3d/storage-narpc/src/main/java/org/apache/crail/storage/tcp/TcpStorageConstants.java
----------------------------------------------------------------------
diff --git a/storage-narpc/src/main/java/org/apache/crail/storage/tcp/TcpStorageConstants.java b/storage-narpc/src/main/java/org/apache/crail/storage/tcp/TcpStorageConstants.java
index 885f8c1..92ba236 100644
--- a/storage-narpc/src/main/java/org/apache/crail/storage/tcp/TcpStorageConstants.java
+++ b/storage-narpc/src/main/java/org/apache/crail/storage/tcp/TcpStorageConstants.java
@@ -1,5 +1,4 @@
 /*
- * Copyright (C) 2015-2018, IBM Corporation
  *
  * Licensed to the Apache Software Foundation (ASF) under one or more
  * contributor license agreements.  See the NOTICE file distributed with

http://git-wip-us.apache.org/repos/asf/incubator-crail/blob/cebc1c3d/storage-narpc/src/main/java/org/apache/crail/storage/tcp/TcpStorageEndpoint.java
----------------------------------------------------------------------
diff --git a/storage-narpc/src/main/java/org/apache/crail/storage/tcp/TcpStorageEndpoint.java b/storage-narpc/src/main/java/org/apache/crail/storage/tcp/TcpStorageEndpoint.java
index 8f37920..5ee131e 100644
--- a/storage-narpc/src/main/java/org/apache/crail/storage/tcp/TcpStorageEndpoint.java
+++ b/storage-narpc/src/main/java/org/apache/crail/storage/tcp/TcpStorageEndpoint.java
@@ -1,5 +1,4 @@
 /*
- * Copyright (C) 2015-2018, IBM Corporation
  *
  * Licensed to the Apache Software Foundation (ASF) under one or more
  * contributor license agreements.  See the NOTICE file distributed with

http://git-wip-us.apache.org/repos/asf/incubator-crail/blob/cebc1c3d/storage-narpc/src/main/java/org/apache/crail/storage/tcp/TcpStorageFuture.java
----------------------------------------------------------------------
diff --git a/storage-narpc/src/main/java/org/apache/crail/storage/tcp/TcpStorageFuture.java b/storage-narpc/src/main/java/org/apache/crail/storage/tcp/TcpStorageFuture.java
index 9f00a9b..d525bca 100644
--- a/storage-narpc/src/main/java/org/apache/crail/storage/tcp/TcpStorageFuture.java
+++ b/storage-narpc/src/main/java/org/apache/crail/storage/tcp/TcpStorageFuture.java
@@ -1,5 +1,4 @@
 /*
- * Copyright (C) 2015-2018, IBM Corporation
  *
  * Licensed to the Apache Software Foundation (ASF) under one or more
  * contributor license agreements.  See the NOTICE file distributed with

http://git-wip-us.apache.org/repos/asf/incubator-crail/blob/cebc1c3d/storage-narpc/src/main/java/org/apache/crail/storage/tcp/TcpStorageProtocol.java
----------------------------------------------------------------------
diff --git a/storage-narpc/src/main/java/org/apache/crail/storage/tcp/TcpStorageProtocol.java b/storage-narpc/src/main/java/org/apache/crail/storage/tcp/TcpStorageProtocol.java
index f423744..cc62ff7 100644
--- a/storage-narpc/src/main/java/org/apache/crail/storage/tcp/TcpStorageProtocol.java
+++ b/storage-narpc/src/main/java/org/apache/crail/storage/tcp/TcpStorageProtocol.java
@@ -1,5 +1,4 @@
 /*
- * Copyright (C) 2015-2018, IBM Corporation
  *
  * Licensed to the Apache Software Foundation (ASF) under one or more
  * contributor license agreements.  See the NOTICE file distributed with

http://git-wip-us.apache.org/repos/asf/incubator-crail/blob/cebc1c3d/storage-narpc/src/main/java/org/apache/crail/storage/tcp/TcpStorageRequest.java
----------------------------------------------------------------------
diff --git a/storage-narpc/src/main/java/org/apache/crail/storage/tcp/TcpStorageRequest.java b/storage-narpc/src/main/java/org/apache/crail/storage/tcp/TcpStorageRequest.java
index 3fa39dd..ae9174d 100644
--- a/storage-narpc/src/main/java/org/apache/crail/storage/tcp/TcpStorageRequest.java
+++ b/storage-narpc/src/main/java/org/apache/crail/storage/tcp/TcpStorageRequest.java
@@ -1,5 +1,4 @@
 /*
- * Copyright (C) 2015-2018, IBM Corporation
  *
  * Licensed to the Apache Software Foundation (ASF) under one or more
  * contributor license agreements.  See the NOTICE file distributed with

http://git-wip-us.apache.org/repos/asf/incubator-crail/blob/cebc1c3d/storage-narpc/src/main/java/org/apache/crail/storage/tcp/TcpStorageResponse.java
----------------------------------------------------------------------
diff --git a/storage-narpc/src/main/java/org/apache/crail/storage/tcp/TcpStorageResponse.java b/storage-narpc/src/main/java/org/apache/crail/storage/tcp/TcpStorageResponse.java
index b7d542b..a19d523 100644
--- a/storage-narpc/src/main/java/org/apache/crail/storage/tcp/TcpStorageResponse.java
+++ b/storage-narpc/src/main/java/org/apache/crail/storage/tcp/TcpStorageResponse.java
@@ -1,5 +1,4 @@
 /*
- * Copyright (C) 2015-2018, IBM Corporation
  *
  * Licensed to the Apache Software Foundation (ASF) under one or more
  * contributor license agreements.  See the NOTICE file distributed with

http://git-wip-us.apache.org/repos/asf/incubator-crail/blob/cebc1c3d/storage-narpc/src/main/java/org/apache/crail/storage/tcp/TcpStorageServer.java
----------------------------------------------------------------------
diff --git a/storage-narpc/src/main/java/org/apache/crail/storage/tcp/TcpStorageServer.java b/storage-narpc/src/main/java/org/apache/crail/storage/tcp/TcpStorageServer.java
index f415f07..6c8211c 100644
--- a/storage-narpc/src/main/java/org/apache/crail/storage/tcp/TcpStorageServer.java
+++ b/storage-narpc/src/main/java/org/apache/crail/storage/tcp/TcpStorageServer.java
@@ -1,5 +1,4 @@
 /*
- * Copyright (C) 2015-2018, IBM Corporation
  *
  * Licensed to the Apache Software Foundation (ASF) under one or more
  * contributor license agreements.  See the NOTICE file distributed with

http://git-wip-us.apache.org/repos/asf/incubator-crail/blob/cebc1c3d/storage-narpc/src/main/java/org/apache/crail/storage/tcp/TcpStorageTier.java
----------------------------------------------------------------------
diff --git a/storage-narpc/src/main/java/org/apache/crail/storage/tcp/TcpStorageTier.java b/storage-narpc/src/main/java/org/apache/crail/storage/tcp/TcpStorageTier.java
index b72254b..e7ac561 100644
--- a/storage-narpc/src/main/java/org/apache/crail/storage/tcp/TcpStorageTier.java
+++ b/storage-narpc/src/main/java/org/apache/crail/storage/tcp/TcpStorageTier.java
@@ -1,5 +1,4 @@
 /*
- * Copyright (C) 2015-2018, IBM Corporation
  *
  * Licensed to the Apache Software Foundation (ASF) under one or more
  * contributor license agreements.  See the NOTICE file distributed with

http://git-wip-us.apache.org/repos/asf/incubator-crail/blob/cebc1c3d/storage-narpc/src/main/java/org/apache/crail/storage/tcp/TcpStorageUtils.java
----------------------------------------------------------------------
diff --git a/storage-narpc/src/main/java/org/apache/crail/storage/tcp/TcpStorageUtils.java b/storage-narpc/src/main/java/org/apache/crail/storage/tcp/TcpStorageUtils.java
index 55761be..ff3b01c 100644
--- a/storage-narpc/src/main/java/org/apache/crail/storage/tcp/TcpStorageUtils.java
+++ b/storage-narpc/src/main/java/org/apache/crail/storage/tcp/TcpStorageUtils.java
@@ -1,5 +1,4 @@
 /*
- * Copyright (C) 2015-2018, IBM Corporation
  *
  * Licensed to the Apache Software Foundation (ASF) under one or more
  * contributor license agreements.  See the NOTICE file distributed with

http://git-wip-us.apache.org/repos/asf/incubator-crail/blob/cebc1c3d/storage-nvmf/pom.xml
----------------------------------------------------------------------
diff --git a/storage-nvmf/pom.xml b/storage-nvmf/pom.xml
index c3b4cb7..3458e65 100644
--- a/storage-nvmf/pom.xml
+++ b/storage-nvmf/pom.xml
@@ -1,5 +1,4 @@
 <!--
-  ~ Copyright (C) 2018, IBM Corporation
   ~
   ~ Licensed to the Apache Software Foundation (ASF) under one or more
   ~ contributor license agreements.  See the NOTICE file distributed with

http://git-wip-us.apache.org/repos/asf/incubator-crail/blob/cebc1c3d/storage-nvmf/src/main/java/org/apache/crail/storage/nvmf/NvmfStorageClient.java
----------------------------------------------------------------------
diff --git a/storage-nvmf/src/main/java/org/apache/crail/storage/nvmf/NvmfStorageClient.java b/storage-nvmf/src/main/java/org/apache/crail/storage/nvmf/NvmfStorageClient.java
index 09a8048..a485080 100644
--- a/storage-nvmf/src/main/java/org/apache/crail/storage/nvmf/NvmfStorageClient.java
+++ b/storage-nvmf/src/main/java/org/apache/crail/storage/nvmf/NvmfStorageClient.java
@@ -1,5 +1,4 @@
 /*
- * Copyright (C) 2018, IBM Corporation
  *
  * Licensed to the Apache Software Foundation (ASF) under one or more
  * contributor license agreements.  See the NOTICE file distributed with

http://git-wip-us.apache.org/repos/asf/incubator-crail/blob/cebc1c3d/storage-nvmf/src/main/java/org/apache/crail/storage/nvmf/NvmfStorageConstants.java
----------------------------------------------------------------------
diff --git a/storage-nvmf/src/main/java/org/apache/crail/storage/nvmf/NvmfStorageConstants.java b/storage-nvmf/src/main/java/org/apache/crail/storage/nvmf/NvmfStorageConstants.java
index 56946c8..c7d16ae 100644
--- a/storage-nvmf/src/main/java/org/apache/crail/storage/nvmf/NvmfStorageConstants.java
+++ b/storage-nvmf/src/main/java/org/apache/crail/storage/nvmf/NvmfStorageConstants.java
@@ -1,5 +1,4 @@
 /*
- * Copyright (C) 2018, IBM Corporation
  *
  * Licensed to the Apache Software Foundation (ASF) under one or more
  * contributor license agreements.  See the NOTICE file distributed with

http://git-wip-us.apache.org/repos/asf/incubator-crail/blob/cebc1c3d/storage-nvmf/src/main/java/org/apache/crail/storage/nvmf/NvmfStorageServer.java
----------------------------------------------------------------------
diff --git a/storage-nvmf/src/main/java/org/apache/crail/storage/nvmf/NvmfStorageServer.java b/storage-nvmf/src/main/java/org/apache/crail/storage/nvmf/NvmfStorageServer.java
index f632852..507f122 100644
--- a/storage-nvmf/src/main/java/org/apache/crail/storage/nvmf/NvmfStorageServer.java
+++ b/storage-nvmf/src/main/java/org/apache/crail/storage/nvmf/NvmfStorageServer.java
@@ -1,5 +1,4 @@
 /*
- * Copyright (C) 2018, IBM Corporation
  *
  * Licensed to the Apache Software Foundation (ASF) under one or more
  * contributor license agreements.  See the NOTICE file distributed with

http://git-wip-us.apache.org/repos/asf/incubator-crail/blob/cebc1c3d/storage-nvmf/src/main/java/org/apache/crail/storage/nvmf/NvmfStorageTier.java
----------------------------------------------------------------------
diff --git a/storage-nvmf/src/main/java/org/apache/crail/storage/nvmf/NvmfStorageTier.java b/storage-nvmf/src/main/java/org/apache/crail/storage/nvmf/NvmfStorageTier.java
index 749a331..3ecc86b 100644
--- a/storage-nvmf/src/main/java/org/apache/crail/storage/nvmf/NvmfStorageTier.java
+++ b/storage-nvmf/src/main/java/org/apache/crail/storage/nvmf/NvmfStorageTier.java
@@ -1,5 +1,4 @@
 /*
- * Copyright (C) 2018, IBM Corporation
  *
  * Licensed to the Apache Software Foundation (ASF) under one or more
  * contributor license agreements.  See the NOTICE file distributed with

http://git-wip-us.apache.org/repos/asf/incubator-crail/blob/cebc1c3d/storage-nvmf/src/main/java/org/apache/crail/storage/nvmf/client/NvmfFuture.java
----------------------------------------------------------------------
diff --git a/storage-nvmf/src/main/java/org/apache/crail/storage/nvmf/client/NvmfFuture.java b/storage-nvmf/src/main/java/org/apache/crail/storage/nvmf/client/NvmfFuture.java
index 885121d..1990823 100644
--- a/storage-nvmf/src/main/java/org/apache/crail/storage/nvmf/client/NvmfFuture.java
+++ b/storage-nvmf/src/main/java/org/apache/crail/storage/nvmf/client/NvmfFuture.java
@@ -1,5 +1,4 @@
 /*
- * Copyright (C) 2018, IBM Corporation
  *
  * Licensed to the Apache Software Foundation (ASF) under one or more
  * contributor license agreements.  See the NOTICE file distributed with

http://git-wip-us.apache.org/repos/asf/incubator-crail/blob/cebc1c3d/storage-nvmf/src/main/java/org/apache/crail/storage/nvmf/client/NvmfRegisteredBufferCache.java
----------------------------------------------------------------------
diff --git a/storage-nvmf/src/main/java/org/apache/crail/storage/nvmf/client/NvmfRegisteredBufferCache.java b/storage-nvmf/src/main/java/org/apache/crail/storage/nvmf/client/NvmfRegisteredBufferCache.java
index ec9ee52..e03f034 100644
--- a/storage-nvmf/src/main/java/org/apache/crail/storage/nvmf/client/NvmfRegisteredBufferCache.java
+++ b/storage-nvmf/src/main/java/org/apache/crail/storage/nvmf/client/NvmfRegisteredBufferCache.java
@@ -1,5 +1,4 @@
 /*
- * Copyright (C) 2018, IBM Corporation
  *
  * Licensed to the Apache Software Foundation (ASF) under one or more
  * contributor license agreements.  See the NOTICE file distributed with

http://git-wip-us.apache.org/repos/asf/incubator-crail/blob/cebc1c3d/storage-nvmf/src/main/java/org/apache/crail/storage/nvmf/client/NvmfStagingBufferCache.java
----------------------------------------------------------------------
diff --git a/storage-nvmf/src/main/java/org/apache/crail/storage/nvmf/client/NvmfStagingBufferCache.java b/storage-nvmf/src/main/java/org/apache/crail/storage/nvmf/client/NvmfStagingBufferCache.java
index fdc0a69..e29c284 100644
--- a/storage-nvmf/src/main/java/org/apache/crail/storage/nvmf/client/NvmfStagingBufferCache.java
+++ b/storage-nvmf/src/main/java/org/apache/crail/storage/nvmf/client/NvmfStagingBufferCache.java
@@ -1,5 +1,4 @@
 /*
- * Copyright (C) 2018, IBM Corporation
  *
  * Licensed to the Apache Software Foundation (ASF) under one or more
  * contributor license agreements.  See the NOTICE file distributed with

http://git-wip-us.apache.org/repos/asf/incubator-crail/blob/cebc1c3d/storage-nvmf/src/main/java/org/apache/crail/storage/nvmf/client/NvmfStorageEndpoint.java
----------------------------------------------------------------------
diff --git a/storage-nvmf/src/main/java/org/apache/crail/storage/nvmf/client/NvmfStorageEndpoint.java b/storage-nvmf/src/main/java/org/apache/crail/storage/nvmf/client/NvmfStorageEndpoint.java
index 58c7543..5c0084e 100644
--- a/storage-nvmf/src/main/java/org/apache/crail/storage/nvmf/client/NvmfStorageEndpoint.java
+++ b/storage-nvmf/src/main/java/org/apache/crail/storage/nvmf/client/NvmfStorageEndpoint.java
@@ -1,5 +1,4 @@
 /*
- * Copyright (C) 2018, IBM Corporation
  *
  * Licensed to the Apache Software Foundation (ASF) under one or more
  * contributor license agreements.  See the NOTICE file distributed with

http://git-wip-us.apache.org/repos/asf/incubator-crail/blob/cebc1c3d/storage-nvmf/src/main/java/org/apache/crail/storage/nvmf/client/NvmfUnalignedWriteFuture.java
----------------------------------------------------------------------
diff --git a/storage-nvmf/src/main/java/org/apache/crail/storage/nvmf/client/NvmfUnalignedWriteFuture.java b/storage-nvmf/src/main/java/org/apache/crail/storage/nvmf/client/NvmfUnalignedWriteFuture.java
index d4b16b2..ff64123 100644
--- a/storage-nvmf/src/main/java/org/apache/crail/storage/nvmf/client/NvmfUnalignedWriteFuture.java
+++ b/storage-nvmf/src/main/java/org/apache/crail/storage/nvmf/client/NvmfUnalignedWriteFuture.java
@@ -1,5 +1,4 @@
 /*
- * Copyright (C) 2018, IBM Corporation
  *
  * Licensed to the Apache Software Foundation (ASF) under one or more
  * contributor license agreements.  See the NOTICE file distributed with

http://git-wip-us.apache.org/repos/asf/incubator-crail/blob/cebc1c3d/storage-nvmf/src/test/java/org/apache/crail/storage/nvmf/client/NvmfStagingBufferCacheTest.java
----------------------------------------------------------------------
diff --git a/storage-nvmf/src/test/java/org/apache/crail/storage/nvmf/client/NvmfStagingBufferCacheTest.java b/storage-nvmf/src/test/java/org/apache/crail/storage/nvmf/client/NvmfStagingBufferCacheTest.java
index 6ff8ea0..d91cdeb 100644
--- a/storage-nvmf/src/test/java/org/apache/crail/storage/nvmf/client/NvmfStagingBufferCacheTest.java
+++ b/storage-nvmf/src/test/java/org/apache/crail/storage/nvmf/client/NvmfStagingBufferCacheTest.java
@@ -1,5 +1,4 @@
 /*
- * Copyright (C) 2018, IBM Corporation
  *
  * Licensed to the Apache Software Foundation (ASF) under one or more
  * contributor license agreements.  See the NOTICE file distributed with

http://git-wip-us.apache.org/repos/asf/incubator-crail/blob/cebc1c3d/storage-rdma/pom.xml
----------------------------------------------------------------------
diff --git a/storage-rdma/pom.xml b/storage-rdma/pom.xml
index e43b75d..753264a 100644
--- a/storage-rdma/pom.xml
+++ b/storage-rdma/pom.xml
@@ -1,5 +1,4 @@
 <!--
-  ~ Copyright (C) 2018, IBM Corporation
   ~
   ~ Licensed to the Apache Software Foundation (ASF) under one or more
   ~ contributor license agreements.  See the NOTICE file distributed with

http://git-wip-us.apache.org/repos/asf/incubator-crail/blob/cebc1c3d/storage-rdma/src/main/java/org/apache/crail/storage/rdma/MrCache.java
----------------------------------------------------------------------
diff --git a/storage-rdma/src/main/java/org/apache/crail/storage/rdma/MrCache.java b/storage-rdma/src/main/java/org/apache/crail/storage/rdma/MrCache.java
index 504e20c..36a692f 100644
--- a/storage-rdma/src/main/java/org/apache/crail/storage/rdma/MrCache.java
+++ b/storage-rdma/src/main/java/org/apache/crail/storage/rdma/MrCache.java
@@ -1,5 +1,4 @@
 /*
- * Copyright (C) 2015-2018, IBM Corporation
  *
  * Licensed to the Apache Software Foundation (ASF) under one or more
  * contributor license agreements.  See the NOTICE file distributed with

http://git-wip-us.apache.org/repos/asf/incubator-crail/blob/cebc1c3d/storage-rdma/src/main/java/org/apache/crail/storage/rdma/RdmaConstants.java
----------------------------------------------------------------------
diff --git a/storage-rdma/src/main/java/org/apache/crail/storage/rdma/RdmaConstants.java b/storage-rdma/src/main/java/org/apache/crail/storage/rdma/RdmaConstants.java
index 25cea6c..6a54509 100644
--- a/storage-rdma/src/main/java/org/apache/crail/storage/rdma/RdmaConstants.java
+++ b/storage-rdma/src/main/java/org/apache/crail/storage/rdma/RdmaConstants.java
@@ -1,5 +1,4 @@
 /*
- * Copyright (C) 2015-2018, IBM Corporation
  *
  * Licensed to the Apache Software Foundation (ASF) under one or more
  * contributor license agreements.  See the NOTICE file distributed with

http://git-wip-us.apache.org/repos/asf/incubator-crail/blob/cebc1c3d/storage-rdma/src/main/java/org/apache/crail/storage/rdma/RdmaStorageClient.java
----------------------------------------------------------------------
diff --git a/storage-rdma/src/main/java/org/apache/crail/storage/rdma/RdmaStorageClient.java b/storage-rdma/src/main/java/org/apache/crail/storage/rdma/RdmaStorageClient.java
index 72b749f..71b58b1 100644
--- a/storage-rdma/src/main/java/org/apache/crail/storage/rdma/RdmaStorageClient.java
+++ b/storage-rdma/src/main/java/org/apache/crail/storage/rdma/RdmaStorageClient.java
@@ -1,5 +1,4 @@
 /*
- * Copyright (C) 2015-2018, IBM Corporation
  *
  * Licensed to the Apache Software Foundation (ASF) under one or more
  * contributor license agreements.  See the NOTICE file distributed with

http://git-wip-us.apache.org/repos/asf/incubator-crail/blob/cebc1c3d/storage-rdma/src/main/java/org/apache/crail/storage/rdma/RdmaStorageEndpointFactory.java
----------------------------------------------------------------------
diff --git a/storage-rdma/src/main/java/org/apache/crail/storage/rdma/RdmaStorageEndpointFactory.java b/storage-rdma/src/main/java/org/apache/crail/storage/rdma/RdmaStorageEndpointFactory.java
index 25bc10a..c79bdc7 100644
--- a/storage-rdma/src/main/java/org/apache/crail/storage/rdma/RdmaStorageEndpointFactory.java
+++ b/storage-rdma/src/main/java/org/apache/crail/storage/rdma/RdmaStorageEndpointFactory.java
@@ -1,5 +1,4 @@
 /*
- * Copyright (C) 2015-2018, IBM Corporation
  *
  * Licensed to the Apache Software Foundation (ASF) under one or more
  * contributor license agreements.  See the NOTICE file distributed with

http://git-wip-us.apache.org/repos/asf/incubator-crail/blob/cebc1c3d/storage-rdma/src/main/java/org/apache/crail/storage/rdma/RdmaStorageGroup.java
----------------------------------------------------------------------
diff --git a/storage-rdma/src/main/java/org/apache/crail/storage/rdma/RdmaStorageGroup.java b/storage-rdma/src/main/java/org/apache/crail/storage/rdma/RdmaStorageGroup.java
index d1c5905..81da5e4 100644
--- a/storage-rdma/src/main/java/org/apache/crail/storage/rdma/RdmaStorageGroup.java
+++ b/storage-rdma/src/main/java/org/apache/crail/storage/rdma/RdmaStorageGroup.java
@@ -1,5 +1,4 @@
 /*
- * Copyright (C) 2015-2018, IBM Corporation
  *
  * Licensed to the Apache Software Foundation (ASF) under one or more
  * contributor license agreements.  See the NOTICE file distributed with

http://git-wip-us.apache.org/repos/asf/incubator-crail/blob/cebc1c3d/storage-rdma/src/main/java/org/apache/crail/storage/rdma/RdmaStorageServer.java
----------------------------------------------------------------------
diff --git a/storage-rdma/src/main/java/org/apache/crail/storage/rdma/RdmaStorageServer.java b/storage-rdma/src/main/java/org/apache/crail/storage/rdma/RdmaStorageServer.java
index b04a62b..ee7d90b 100644
--- a/storage-rdma/src/main/java/org/apache/crail/storage/rdma/RdmaStorageServer.java
+++ b/storage-rdma/src/main/java/org/apache/crail/storage/rdma/RdmaStorageServer.java
@@ -1,5 +1,4 @@
 /*
- * Copyright (C) 2015-2018, IBM Corporation
  *
  * Licensed to the Apache Software Foundation (ASF) under one or more
  * contributor license agreements.  See the NOTICE file distributed with

http://git-wip-us.apache.org/repos/asf/incubator-crail/blob/cebc1c3d/storage-rdma/src/main/java/org/apache/crail/storage/rdma/RdmaStorageServerEndpoint.java
----------------------------------------------------------------------
diff --git a/storage-rdma/src/main/java/org/apache/crail/storage/rdma/RdmaStorageServerEndpoint.java b/storage-rdma/src/main/java/org/apache/crail/storage/rdma/RdmaStorageServerEndpoint.java
index 52a9925..ebc2188 100644
--- a/storage-rdma/src/main/java/org/apache/crail/storage/rdma/RdmaStorageServerEndpoint.java
+++ b/storage-rdma/src/main/java/org/apache/crail/storage/rdma/RdmaStorageServerEndpoint.java
@@ -1,5 +1,4 @@
 /*
- * Copyright (C) 2015-2018, IBM Corporation
  *
  * Licensed to the Apache Software Foundation (ASF) under one or more
  * contributor license agreements.  See the NOTICE file distributed with

http://git-wip-us.apache.org/repos/asf/incubator-crail/blob/cebc1c3d/storage-rdma/src/main/java/org/apache/crail/storage/rdma/RdmaStorageTier.java
----------------------------------------------------------------------
diff --git a/storage-rdma/src/main/java/org/apache/crail/storage/rdma/RdmaStorageTier.java b/storage-rdma/src/main/java/org/apache/crail/storage/rdma/RdmaStorageTier.java
index 2ce4f7d..53c44f3 100644
--- a/storage-rdma/src/main/java/org/apache/crail/storage/rdma/RdmaStorageTier.java
+++ b/storage-rdma/src/main/java/org/apache/crail/storage/rdma/RdmaStorageTier.java
@@ -1,5 +1,4 @@
 /*
- * Copyright (C) 2015-2018, IBM Corporation
  *
  * Licensed to the Apache Software Foundation (ASF) under one or more
  * contributor license agreements.  See the NOTICE file distributed with

http://git-wip-us.apache.org/repos/asf/incubator-crail/blob/cebc1c3d/storage-rdma/src/main/java/org/apache/crail/storage/rdma/client/RdmaActiveFuture.java
----------------------------------------------------------------------
diff --git a/storage-rdma/src/main/java/org/apache/crail/storage/rdma/client/RdmaActiveFuture.java b/storage-rdma/src/main/java/org/apache/crail/storage/rdma/client/RdmaActiveFuture.java
index 3f91e79..573c1f2 100644
--- a/storage-rdma/src/main/java/org/apache/crail/storage/rdma/client/RdmaActiveFuture.java
+++ b/storage-rdma/src/main/java/org/apache/crail/storage/rdma/client/RdmaActiveFuture.java
@@ -1,5 +1,4 @@
 /*
- * Copyright (C) 2015-2018, IBM Corporation
  *
  * Licensed to the Apache Software Foundation (ASF) under one or more
  * contributor license agreements.  See the NOTICE file distributed with

http://git-wip-us.apache.org/repos/asf/incubator-crail/blob/cebc1c3d/storage-rdma/src/main/java/org/apache/crail/storage/rdma/client/RdmaLocalFuture.java
----------------------------------------------------------------------
diff --git a/storage-rdma/src/main/java/org/apache/crail/storage/rdma/client/RdmaLocalFuture.java b/storage-rdma/src/main/java/org/apache/crail/storage/rdma/client/RdmaLocalFuture.java
index 5e232c9..de70adb 100644
--- a/storage-rdma/src/main/java/org/apache/crail/storage/rdma/client/RdmaLocalFuture.java
+++ b/storage-rdma/src/main/java/org/apache/crail/storage/rdma/client/RdmaLocalFuture.java
@@ -1,5 +1,4 @@
 /*
- * Copyright (C) 2015-2018, IBM Corporation
  *
  * Licensed to the Apache Software Foundation (ASF) under one or more
  * contributor license agreements.  See the NOTICE file distributed with

http://git-wip-us.apache.org/repos/asf/incubator-crail/blob/cebc1c3d/storage-rdma/src/main/java/org/apache/crail/storage/rdma/client/RdmaPassiveFuture.java
----------------------------------------------------------------------
diff --git a/storage-rdma/src/main/java/org/apache/crail/storage/rdma/client/RdmaPassiveFuture.java b/storage-rdma/src/main/java/org/apache/crail/storage/rdma/client/RdmaPassiveFuture.java
index e46af03..5b3dc82 100644
--- a/storage-rdma/src/main/java/org/apache/crail/storage/rdma/client/RdmaPassiveFuture.java
+++ b/storage-rdma/src/main/java/org/apache/crail/storage/rdma/client/RdmaPassiveFuture.java
@@ -1,5 +1,4 @@
 /*
- * Copyright (C) 2015-2018, IBM Corporation
  *
  * Licensed to the Apache Software Foundation (ASF) under one or more
  * contributor license agreements.  See the NOTICE file distributed with

http://git-wip-us.apache.org/repos/asf/incubator-crail/blob/cebc1c3d/storage-rdma/src/main/java/org/apache/crail/storage/rdma/client/RdmaStorageActiveEndpoint.java
----------------------------------------------------------------------
diff --git a/storage-rdma/src/main/java/org/apache/crail/storage/rdma/client/RdmaStorageActiveEndpoint.java b/storage-rdma/src/main/java/org/apache/crail/storage/rdma/client/RdmaStorageActiveEndpoint.java
index 9a99725..1b468a9 100644
--- a/storage-rdma/src/main/java/org/apache/crail/storage/rdma/client/RdmaStorageActiveEndpoint.java
+++ b/storage-rdma/src/main/java/org/apache/crail/storage/rdma/client/RdmaStorageActiveEndpoint.java
@@ -1,5 +1,4 @@
 /*
- * Copyright (C) 2015-2018, IBM Corporation
  *
  * Licensed to the Apache Software Foundation (ASF) under one or more
  * contributor license agreements.  See the NOTICE file distributed with

http://git-wip-us.apache.org/repos/asf/incubator-crail/blob/cebc1c3d/storage-rdma/src/main/java/org/apache/crail/storage/rdma/client/RdmaStorageActiveEndpointFactory.java
----------------------------------------------------------------------
diff --git a/storage-rdma/src/main/java/org/apache/crail/storage/rdma/client/RdmaStorageActiveEndpointFactory.java b/storage-rdma/src/main/java/org/apache/crail/storage/rdma/client/RdmaStorageActiveEndpointFactory.java
index 0eba4f5..2aadffd 100644
--- a/storage-rdma/src/main/java/org/apache/crail/storage/rdma/client/RdmaStorageActiveEndpointFactory.java
+++ b/storage-rdma/src/main/java/org/apache/crail/storage/rdma/client/RdmaStorageActiveEndpointFactory.java
@@ -1,5 +1,4 @@
 /*
- * Copyright (C) 2015-2018, IBM Corporation
  *
  * Licensed to the Apache Software Foundation (ASF) under one or more
  * contributor license agreements.  See the NOTICE file distributed with

http://git-wip-us.apache.org/repos/asf/incubator-crail/blob/cebc1c3d/storage-rdma/src/main/java/org/apache/crail/storage/rdma/client/RdmaStorageActiveGroup.java
----------------------------------------------------------------------
diff --git a/storage-rdma/src/main/java/org/apache/crail/storage/rdma/client/RdmaStorageActiveGroup.java b/storage-rdma/src/main/java/org/apache/crail/storage/rdma/client/RdmaStorageActiveGroup.java
index 09fe98e..2f59328 100644
--- a/storage-rdma/src/main/java/org/apache/crail/storage/rdma/client/RdmaStorageActiveGroup.java
+++ b/storage-rdma/src/main/java/org/apache/crail/storage/rdma/client/RdmaStorageActiveGroup.java
@@ -1,5 +1,4 @@
 /*
- * Copyright (C) 2015-2018, IBM Corporation
  *
  * Licensed to the Apache Software Foundation (ASF) under one or more
  * contributor license agreements.  See the NOTICE file distributed with

http://git-wip-us.apache.org/repos/asf/incubator-crail/blob/cebc1c3d/storage-rdma/src/main/java/org/apache/crail/storage/rdma/client/RdmaStorageLocalEndpoint.java
----------------------------------------------------------------------
diff --git a/storage-rdma/src/main/java/org/apache/crail/storage/rdma/client/RdmaStorageLocalEndpoint.java b/storage-rdma/src/main/java/org/apache/crail/storage/rdma/client/RdmaStorageLocalEndpoint.java
index bceed1f..736e071 100644
--- a/storage-rdma/src/main/java/org/apache/crail/storage/rdma/client/RdmaStorageLocalEndpoint.java
+++ b/storage-rdma/src/main/java/org/apache/crail/storage/rdma/client/RdmaStorageLocalEndpoint.java
@@ -1,5 +1,4 @@
 /*
- * Copyright (C) 2015-2018, IBM Corporation
  *
  * Licensed to the Apache Software Foundation (ASF) under one or more
  * contributor license agreements.  See the NOTICE file distributed with

http://git-wip-us.apache.org/repos/asf/incubator-crail/blob/cebc1c3d/storage-rdma/src/main/java/org/apache/crail/storage/rdma/client/RdmaStoragePassiveEndpoint.java
----------------------------------------------------------------------
diff --git a/storage-rdma/src/main/java/org/apache/crail/storage/rdma/client/RdmaStoragePassiveEndpoint.java b/storage-rdma/src/main/java/org/apache/crail/storage/rdma/client/RdmaStoragePassiveEndpoint.java
index 210ce70..814b6a1 100644
--- a/storage-rdma/src/main/java/org/apache/crail/storage/rdma/client/RdmaStoragePassiveEndpoint.java
+++ b/storage-rdma/src/main/java/org/apache/crail/storage/rdma/client/RdmaStoragePassiveEndpoint.java
@@ -1,5 +1,4 @@
 /*
- * Copyright (C) 2015-2018, IBM Corporation
  *
  * Licensed to the Apache Software Foundation (ASF) under one or more
  * contributor license agreements.  See the NOTICE file distributed with

http://git-wip-us.apache.org/repos/asf/incubator-crail/blob/cebc1c3d/storage-rdma/src/main/java/org/apache/crail/storage/rdma/client/RdmaStoragePassiveEndpointFactory.java
----------------------------------------------------------------------
diff --git a/storage-rdma/src/main/java/org/apache/crail/storage/rdma/client/RdmaStoragePassiveEndpointFactory.java b/storage-rdma/src/main/java/org/apache/crail/storage/rdma/client/RdmaStoragePassiveEndpointFactory.java
index bb1d7f5..113bee2 100644
--- a/storage-rdma/src/main/java/org/apache/crail/storage/rdma/client/RdmaStoragePassiveEndpointFactory.java
+++ b/storage-rdma/src/main/java/org/apache/crail/storage/rdma/client/RdmaStoragePassiveEndpointFactory.java
@@ -1,5 +1,4 @@
 /*
- * Copyright (C) 2015-2018, IBM Corporation
  *
  * Licensed to the Apache Software Foundation (ASF) under one or more
  * contributor license agreements.  See the NOTICE file distributed with

http://git-wip-us.apache.org/repos/asf/incubator-crail/blob/cebc1c3d/storage-rdma/src/main/java/org/apache/crail/storage/rdma/client/RdmaStoragePassiveGroup.java
----------------------------------------------------------------------
diff --git a/storage-rdma/src/main/java/org/apache/crail/storage/rdma/client/RdmaStoragePassiveGroup.java b/storage-rdma/src/main/java/org/apache/crail/storage/rdma/client/RdmaStoragePassiveGroup.java
index f6ec284..33018a2 100644
--- a/storage-rdma/src/main/java/org/apache/crail/storage/rdma/client/RdmaStoragePassiveGroup.java
+++ b/storage-rdma/src/main/java/org/apache/crail/storage/rdma/client/RdmaStoragePassiveGroup.java
@@ -1,5 +1,4 @@
 /*
- * Copyright (C) 2015-2018, IBM Corporation
  *
  * Licensed to the Apache Software Foundation (ASF) under one or more
  * contributor license agreements.  See the NOTICE file distributed with

http://git-wip-us.apache.org/repos/asf/incubator-crail/blob/cebc1c3d/storage/pom.xml
----------------------------------------------------------------------
diff --git a/storage/pom.xml b/storage/pom.xml
index 0a4b63c..2d55a25 100644
--- a/storage/pom.xml
+++ b/storage/pom.xml
@@ -1,5 +1,4 @@
 <!--
-  ~ Copyright (C) 2018, IBM Corporation
   ~
   ~ Licensed to the Apache Software Foundation (ASF) under one or more
   ~ contributor license agreements.  See the NOTICE file distributed with

http://git-wip-us.apache.org/repos/asf/incubator-crail/blob/cebc1c3d/storage/src/main/java/org/apache/crail/storage/StorageResource.java
----------------------------------------------------------------------
diff --git a/storage/src/main/java/org/apache/crail/storage/StorageResource.java b/storage/src/main/java/org/apache/crail/storage/StorageResource.java
index 1123557..b47ff8e 100644
--- a/storage/src/main/java/org/apache/crail/storage/StorageResource.java
+++ b/storage/src/main/java/org/apache/crail/storage/StorageResource.java
@@ -1,5 +1,4 @@
 /*
- * Copyright (C) 2015-2018, IBM Corporation
  *
  * Licensed to the Apache Software Foundation (ASF) under one or more
  * contributor license agreements.  See the NOTICE file distributed with

http://git-wip-us.apache.org/repos/asf/incubator-crail/blob/cebc1c3d/storage/src/main/java/org/apache/crail/storage/StorageRpcClient.java
----------------------------------------------------------------------
diff --git a/storage/src/main/java/org/apache/crail/storage/StorageRpcClient.java b/storage/src/main/java/org/apache/crail/storage/StorageRpcClient.java
index d92f77f..7392183 100644
--- a/storage/src/main/java/org/apache/crail/storage/StorageRpcClient.java
+++ b/storage/src/main/java/org/apache/crail/storage/StorageRpcClient.java
@@ -1,5 +1,4 @@
 /*
- * Copyright (C) 2015-2018, IBM Corporation
  *
  * Licensed to the Apache Software Foundation (ASF) under one or more
  * contributor license agreements.  See the NOTICE file distributed with

http://git-wip-us.apache.org/repos/asf/incubator-crail/blob/cebc1c3d/storage/src/main/java/org/apache/crail/storage/StorageServer.java
----------------------------------------------------------------------
diff --git a/storage/src/main/java/org/apache/crail/storage/StorageServer.java b/storage/src/main/java/org/apache/crail/storage/StorageServer.java
index c348f38..9dce8b2 100644
--- a/storage/src/main/java/org/apache/crail/storage/StorageServer.java
+++ b/storage/src/main/java/org/apache/crail/storage/StorageServer.java
@@ -1,5 +1,4 @@
 /*
- * Copyright (C) 2015-2018, IBM Corporation
  *
  * Licensed to the Apache Software Foundation (ASF) under one or more
  * contributor license agreements.  See the NOTICE file distributed with

http://git-wip-us.apache.org/repos/asf/incubator-crail/blob/cebc1c3d/storage/src/main/java/org/apache/crail/storage/StorageTier.java
----------------------------------------------------------------------
diff --git a/storage/src/main/java/org/apache/crail/storage/StorageTier.java b/storage/src/main/java/org/apache/crail/storage/StorageTier.java
index d8ac67b..0e9156e 100644
--- a/storage/src/main/java/org/apache/crail/storage/StorageTier.java
+++ b/storage/src/main/java/org/apache/crail/storage/StorageTier.java
@@ -1,5 +1,4 @@
 /*
- * Copyright (C) 2015-2018, IBM Corporation
  *
  * Licensed to the Apache Software Foundation (ASF) under one or more
  * contributor license agreements.  See the NOTICE file distributed with