Updated Branches: refs/heads/flume-1.4 84c4586bd -> 9ad20d39e
FLUME-1651. In the hadoop-0.23 profile HBase version needs to be at least 0.94.2. (Roman Shaposhnik via Mike Percy) Project: http://git-wip-us.apache.org/repos/asf/flume/repo Commit: http://git-wip-us.apache.org/repos/asf/flume/commit/9ad20d39 Tree: http://git-wip-us.apache.org/repos/asf/flume/tree/9ad20d39 Diff: http://git-wip-us.apache.org/repos/asf/flume/diff/9ad20d39 Branch: refs/heads/flume-1.4 Commit: 9ad20d39e82e0936a0cb316cd5c47efd59f6fea3 Parents: 84c4586 Author: Mike Percy <[email protected]> Authored: Wed Oct 17 13:09:15 2012 -0700 Committer: Mike Percy <[email protected]> Committed: Wed Oct 17 13:15:47 2012 -0700 ---------------------------------------------------------------------- pom.xml | 16 ++++++++++++++-- 1 files changed, 14 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/flume/blob/9ad20d39/pom.xml ---------------------------------------------------------------------- diff --git a/pom.xml b/pom.xml index 0cdcfa3..6d0f6c5 100644 --- a/pom.xml +++ b/pom.xml @@ -68,6 +68,7 @@ limitations under the License. </activation> <properties> <hadoop.version>1.0.1</hadoop.version> + <hbase.version>0.92.1</hbase.version> <hadoop.common.artifact.id>hadoop-core</hadoop.common.artifact.id> </properties> <dependencyManagement> @@ -96,6 +97,7 @@ limitations under the License. </activation> <properties> <hadoop.version>0.23.1</hadoop.version> + <hbase.version>0.94.2</hbase.version> <hadoop.common.artifact.id>hadoop-common</hadoop.common.artifact.id> </properties> <dependencyManagement> @@ -117,6 +119,16 @@ limitations under the License. </dependency> <dependency> <groupId>org.apache.hadoop</groupId> + <artifactId>hadoop-client</artifactId> + <version>${hadoop.version}</version> + </dependency> + <dependency> + <groupId>org.apache.hadoop</groupId> + <artifactId>hadoop-annotations</artifactId> + <version>${hadoop.version}</version> + </dependency> + <dependency> + <groupId>org.apache.hadoop</groupId> <artifactId>hadoop-auth</artifactId> <version>${hadoop.version}</version> </dependency> @@ -755,13 +767,13 @@ limitations under the License. <dependency> <groupId>org.apache.hbase</groupId> <artifactId>hbase</artifactId> - <version>0.92.1</version> + <version>${hbase.version}</version> </dependency> <dependency> <groupId>org.apache.hbase</groupId> <artifactId>hbase</artifactId> - <version>0.92.1</version> + <version>${hbase.version}</version> <classifier>tests</classifier> <scope>test</scope> </dependency>
