Repository: gora
Updated Branches:
  refs/heads/master 1a8a14ba1 -> 35a88e8a6


GORA-415 hadoop-client dependency should be optional in gora-core


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

Branch: refs/heads/master
Commit: e7d6b6edc3d2392272263a0fb381fb9a2de166ff
Parents: 65d6c7a
Author: Lewis John McGibbney <lewis.j.mcgibb...@jpl.nasa.gov>
Authored: Fri Feb 27 13:27:47 2015 -0800
Committer: Lewis John McGibbney <lewis.j.mcgibb...@jpl.nasa.gov>
Committed: Fri Feb 27 13:27:47 2015 -0800

----------------------------------------------------------------------
 gora-core/pom.xml                               |  1 +
 gora-hbase/pom.xml                              |  7 +++++
 .../apache/gora/hbase/store/HBaseMapping.java   |  2 +-
 gora-mongodb/pom.xml                            |  7 +++++
 .../gora/shims/hadoop1/TestHadoopShim1.java     | 27 ++++++++++++++++----
 .../gora/shims/hadoop2/TestHadoopShim2.java     | 27 ++++++++++++++++----
 pom.xml                                         |  1 -
 7 files changed, 60 insertions(+), 12 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/gora/blob/e7d6b6ed/gora-core/pom.xml
----------------------------------------------------------------------
diff --git a/gora-core/pom.xml b/gora-core/pom.xml
index c34df17..b6e8152 100644
--- a/gora-core/pom.xml
+++ b/gora-core/pom.xml
@@ -113,6 +113,7 @@
     <dependency>
       <groupId>org.apache.hadoop</groupId>
       <artifactId>hadoop-client</artifactId>
+      <optional>true</optional>
     </dependency>
 
     <dependency>

http://git-wip-us.apache.org/repos/asf/gora/blob/e7d6b6ed/gora-hbase/pom.xml
----------------------------------------------------------------------
diff --git a/gora-hbase/pom.xml b/gora-hbase/pom.xml
index a8a2795..9e276ec 100644
--- a/gora-hbase/pom.xml
+++ b/gora-hbase/pom.xml
@@ -109,6 +109,13 @@
     <!-- END of Gora Internal Dependencies -->
 
     <dependency>
+      <groupId>org.apache.hadoop</groupId>
+      <artifactId>hadoop-client</artifactId>
+      <scope>compile</scope>
+      <optional>true</optional>
+    </dependency>
+
+    <dependency>
       <groupId>org.apache.hbase</groupId>
       <artifactId>hbase-client</artifactId>
       <scope>compile</scope>

http://git-wip-us.apache.org/repos/asf/gora/blob/e7d6b6ed/gora-hbase/src/main/java/org/apache/gora/hbase/store/HBaseMapping.java
----------------------------------------------------------------------
diff --git 
a/gora-hbase/src/main/java/org/apache/gora/hbase/store/HBaseMapping.java 
b/gora-hbase/src/main/java/org/apache/gora/hbase/store/HBaseMapping.java
index dbf02c4..d32bbd0 100644
--- a/gora-hbase/src/main/java/org/apache/gora/hbase/store/HBaseMapping.java
+++ b/gora-hbase/src/main/java/org/apache/gora/hbase/store/HBaseMapping.java
@@ -61,7 +61,7 @@ public class HBaseMapping {
   
   /**
    * A builder for creating the mapper. This will allow building a thread safe
-   * {@link HBaseMapping} using simple immutabilty.
+   * {@link HBaseMapping} using simple immutability.
    *
    */
   public static class HBaseMappingBuilder { 

http://git-wip-us.apache.org/repos/asf/gora/blob/e7d6b6ed/gora-mongodb/pom.xml
----------------------------------------------------------------------
diff --git a/gora-mongodb/pom.xml b/gora-mongodb/pom.xml
index f69957b..84fceac 100644
--- a/gora-mongodb/pom.xml
+++ b/gora-mongodb/pom.xml
@@ -125,6 +125,13 @@
     </dependency>
 
     <!-- Misc Dependencies -->
+     <dependency>
+      <groupId>org.apache.hadoop</groupId>
+      <artifactId>hadoop-client</artifactId>
+      <scope>compile</scope>
+      <optional>true</optional>
+    </dependency>
+
     <dependency>
       <groupId>org.jdom</groupId>
       <artifactId>jdom</artifactId>

http://git-wip-us.apache.org/repos/asf/gora/blob/e7d6b6ed/gora-shims-hadoop1/src/test/java/org/apache/gora/shims/hadoop1/TestHadoopShim1.java
----------------------------------------------------------------------
diff --git 
a/gora-shims-hadoop1/src/test/java/org/apache/gora/shims/hadoop1/TestHadoopShim1.java
 
b/gora-shims-hadoop1/src/test/java/org/apache/gora/shims/hadoop1/TestHadoopShim1.java
index f0f1533..d227ce8 100644
--- 
a/gora-shims-hadoop1/src/test/java/org/apache/gora/shims/hadoop1/TestHadoopShim1.java
+++ 
b/gora-shims-hadoop1/src/test/java/org/apache/gora/shims/hadoop1/TestHadoopShim1.java
@@ -1,3 +1,20 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *     http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
 package org.apache.gora.shims.hadoop1;
 
 import org.apache.gora.shims.hadoop.HadoopShim;
@@ -8,11 +25,11 @@ import static org.junit.Assert.*;
 
 public class TestHadoopShim1 {
 
-    @Test
-    public void testCorrectVersion() {
-        HadoopShim shim = HadoopShimFactory.INSTANCE().getHadoopShim();
+  @Test
+  public void testCorrectVersion() {
+    HadoopShim shim = HadoopShimFactory.INSTANCE().getHadoopShim();
 
-        assertSame(shim.getClass(), HadoopShim1.class);
-    }
+    assertSame(shim.getClass(), HadoopShim1.class);
+  }
 
 }

http://git-wip-us.apache.org/repos/asf/gora/blob/e7d6b6ed/gora-shims-hadoop2/src/test/java/org/apache/gora/shims/hadoop2/TestHadoopShim2.java
----------------------------------------------------------------------
diff --git 
a/gora-shims-hadoop2/src/test/java/org/apache/gora/shims/hadoop2/TestHadoopShim2.java
 
b/gora-shims-hadoop2/src/test/java/org/apache/gora/shims/hadoop2/TestHadoopShim2.java
index e97004d..643cae4 100644
--- 
a/gora-shims-hadoop2/src/test/java/org/apache/gora/shims/hadoop2/TestHadoopShim2.java
+++ 
b/gora-shims-hadoop2/src/test/java/org/apache/gora/shims/hadoop2/TestHadoopShim2.java
@@ -1,3 +1,20 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *     http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
 package org.apache.gora.shims.hadoop2;
 
 import org.apache.gora.shims.hadoop.HadoopShim;
@@ -8,11 +25,11 @@ import static org.junit.Assert.*;
 
 public class TestHadoopShim2 {
 
-    @Test
-    public void testCorrectVersion() {
-        HadoopShim shim = HadoopShimFactory.INSTANCE().getHadoopShim();
+  @Test
+  public void testCorrectVersion() {
+    HadoopShim shim = HadoopShimFactory.INSTANCE().getHadoopShim();
 
-        assertSame(shim.getClass(), HadoopShim2.class);
-    }
+    assertSame(shim.getClass(), HadoopShim2.class);
+  }
 
 }

http://git-wip-us.apache.org/repos/asf/gora/blob/e7d6b6ed/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index b7bd55b..f5130d8 100644
--- a/pom.xml
+++ b/pom.xml
@@ -602,7 +602,6 @@
     <module>gora-accumulo</module>
     <module>gora-cassandra</module>
     <module>gora-goraci</module>
-
     <module>gora-hbase</module>
     <!-- module>gora-lucene</module -->
     <!--module>gora-dynamodb</module -->

Reply via email to