Skip to content

Updated Apache Hadoop to 2.5.0 #3

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 11 additions & 9 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
<groupId>org.apache.hbase</groupId>
<artifactId>hbase</artifactId>
<packaging>jar</packaging>
<version>0.94.24-SNAPSHOT</version>
<version>0.94.24-hadoop-2.5.0</version>
<name>HBase</name>
<description>
HBase is the &amp;lt;a href="http://hadoop.apache.org"&amp;rt;Hadoop&lt;/a&amp;rt; database. Use it when you need
Expand Down Expand Up @@ -1056,7 +1056,7 @@
<slf4j.version>1.4.3</slf4j.version>
<log4j.version>1.2.16</log4j.version>
<mockito-all.version>1.8.5</mockito-all.version>
<protobuf.version>2.4.0a</protobuf.version>
<protobuf.version>2.5.0</protobuf.version>
<stax-api.version>1.0.1</stax-api.version>
<thrift.version>0.8.0</thrift.version>
<zookeeper.version>3.4.5</zookeeper.version>
Expand Down Expand Up @@ -1610,12 +1610,16 @@
</build>
</profile>

<!-- profile for building against Hadoop 1.0.x: This is the default. -->
<!-- profile for building against Hadoop 1.0.x.
Activate using:
mvn -Dhadoop.profile=1.0
-->
<profile>
<id>hadoop-1.0</id>
<activation>
<property>
<name>!hadoop.profile</name>
<name>hadoop.profile</name>
<value>1.0</value>
</property>
</activation>
<properties>
Expand Down Expand Up @@ -2229,19 +2233,17 @@
</profile>

<!--
profile for building against Hadoop 2.0.0-alpha. Activate using:
mvn -Dhadoop.profile=2.0
profile for building against Hadoop 2.5. Default profile.
-->
<profile>
<id>hadoop-2.0</id>
<activation>
<property>
<name>hadoop.profile</name>
<value>2.0</value>
<name>!hadoop.profile</name>
</property>
</activation>
<properties>
<hadoop.version>2.0.0-alpha</hadoop.version>
<hadoop.version>2.5.0</hadoop.version>
<slf4j.version>1.6.1</slf4j.version>
</properties>
<dependencies>
Expand Down
Loading