You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@accumulo.apache.org by ct...@apache.org on 2019/04/18 15:54:23 UTC

[accumulo-examples] branch master updated: Add missing licenses that caused the build to fail (#44)

This is an automated email from the ASF dual-hosted git repository.

ctubbsii pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/accumulo-examples.git


The following commit(s) were added to refs/heads/master by this push:
     new fb8b837  Add missing licenses that caused the build to fail (#44)
fb8b837 is described below

commit fb8b837c472283ceac27b109e85e4c53f507301e
Author: Jeffrey Manno <je...@gmail.com>
AuthorDate: Thu Apr 18 11:54:19 2019 -0400

    Add missing licenses that caused the build to fail (#44)
---
 spark/run.sh                                             | 16 ++++++++++++++++
 .../main/java/org/apache/accumulo/spark/CopyPlus5K.java  | 16 ++++++++++++++++
 2 files changed, 32 insertions(+)

diff --git a/spark/run.sh b/spark/run.sh
index e1ab9c0..4b246ea 100755
--- a/spark/run.sh
+++ b/spark/run.sh
@@ -1,5 +1,21 @@
 #!/bin/bash
 
+# Licensed to the Apache Software Foundation (ASF) under one or more
+# contributor license agreements.  See the NOTICE file distributed with
+# this work for additional information regarding copyright ownership.
+# The ASF licenses this file to You under the Apache License, Version 2.0
+# (the "License"); you may not use this file except in compliance with
+# the License.  You may obtain a copy of the License at
+#
+#     http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+
+
 if [[ -z "$1" || -z "$2" ]]; then
   echo "Usage: ./run.sh [bulk|batch] /path/to/accumulo-client.properties"
   exit 1
diff --git a/spark/src/main/java/org/apache/accumulo/spark/CopyPlus5K.java b/spark/src/main/java/org/apache/accumulo/spark/CopyPlus5K.java
index 4443a70..a1eee08 100644
--- a/spark/src/main/java/org/apache/accumulo/spark/CopyPlus5K.java
+++ b/spark/src/main/java/org/apache/accumulo/spark/CopyPlus5K.java
@@ -1,3 +1,19 @@
+/*
+ * 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.accumulo.spark;
 
 import java.util.Arrays;