You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hbase.apache.org by ap...@apache.org on 2014/05/24 01:34:40 UTC

[1/2] git commit: Amend HBASE-11161 Provide example of POJO encoding with protobuf; Add explicit dependency on protobuf-java to hbase-common for Hadoop 1

Repository: hbase
Updated Branches:
  refs/heads/0.98 568bfe416 -> 503709fdf
  refs/heads/master be85f89cd -> b85cbbdea
Updated Tags:  refs/tags/0.98.3RC0 336799d72 -> 611a400a4


Amend HBASE-11161 Provide example of POJO encoding with protobuf; Add explicit dependency on protobuf-java to hbase-common for Hadoop 1


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

Branch: refs/heads/0.98
Commit: 503709fdf67d335fcb96f9a60a4b971de01479e1
Parents: 568bfe4
Author: Andrew Purtell <ap...@apache.org>
Authored: Fri May 23 23:30:00 2014 +0000
Committer: Andrew Purtell <ap...@apache.org>
Committed: Fri May 23 23:30:00 2014 +0000

----------------------------------------------------------------------
 hbase-common/pom.xml | 4 ++++
 1 file changed, 4 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/hbase/blob/503709fd/hbase-common/pom.xml
----------------------------------------------------------------------
diff --git a/hbase-common/pom.xml b/hbase-common/pom.xml
index 8c7b696..13e2a7f 100644
--- a/hbase-common/pom.xml
+++ b/hbase-common/pom.xml
@@ -206,6 +206,10 @@
       <artifactId>commons-io</artifactId>
       <scope>compile</scope>
     </dependency>
+    <dependency>
+      <groupId>com.google.protobuf</groupId>
+      <artifactId>protobuf-java</artifactId>
+    </dependency>
   </dependencies>
 
   <profiles>


[2/2] git commit: Amend HBASE-11161 Provide example of POJO encoding with protobuf; Add explicit dependency on protobuf-java to hbase-common for Hadoop 1

Posted by ap...@apache.org.
Amend HBASE-11161 Provide example of POJO encoding with protobuf; Add explicit dependency on protobuf-java to hbase-common for Hadoop 1


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

Branch: refs/heads/master
Commit: b85cbbdea920525f9c019c0ac9187590943fcc27
Parents: be85f89
Author: Andrew Purtell <ap...@apache.org>
Authored: Fri May 23 23:30:00 2014 +0000
Committer: Andrew Purtell <ap...@apache.org>
Committed: Fri May 23 23:30:47 2014 +0000

----------------------------------------------------------------------
 hbase-common/pom.xml | 4 ++++
 1 file changed, 4 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/hbase/blob/b85cbbde/hbase-common/pom.xml
----------------------------------------------------------------------
diff --git a/hbase-common/pom.xml b/hbase-common/pom.xml
index 49703fc..cc61d1f 100644
--- a/hbase-common/pom.xml
+++ b/hbase-common/pom.xml
@@ -206,6 +206,10 @@
       <artifactId>commons-io</artifactId>
       <scope>compile</scope>
     </dependency>
+    <dependency>
+      <groupId>com.google.protobuf</groupId>
+      <artifactId>protobuf-java</artifactId>
+    </dependency>
     <!-- tracing Dependencies -->
     <dependency>
       <groupId>org.htrace</groupId>