Updated Branches: refs/heads/trunk ab984d24b -> ea17493a5
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/ea17493a Tree: http://git-wip-us.apache.org/repos/asf/flume/tree/ea17493a Diff: http://git-wip-us.apache.org/repos/asf/flume/diff/ea17493a Branch: refs/heads/trunk Commit: ea17493a54b6340702f8d31d5d390403d8f423b9 Parents: ab984d2 Author: Mike Percy <[email protected]> Authored: Wed Oct 17 13:09:15 2012 -0700 Committer: Mike Percy <[email protected]> Committed: Wed Oct 17 13:09:15 2012 -0700 ---------------------------------------------------------------------- pom.xml | 16 ++++++++++++++-- 1 files changed, 14 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/flume/blob/ea17493a/pom.xml ---------------------------------------------------------------------- diff --git a/pom.xml b/pom.xml index 4cd4009..ca17e40 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> @@ -762,13 +774,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>
