HBASE-3230 Refresh our hadoop jar and update zookeeper to just-released 3.3.
git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1034540 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
1e36a17a1c
commit
794583ec7a
|
@ -1151,6 +1151,8 @@ Release 0.90.0 - Unreleased
|
|||
HBASE-3218 Shell help cleanup/cosmetics/edit
|
||||
HBASE-3079 Shell displaying uninformative exceptions
|
||||
HBASE-3227 Edit of log messages before branching.
|
||||
HBASE-3230 Refresh our hadoop jar and update zookeeper to
|
||||
just-released 3.3.2
|
||||
|
||||
|
||||
NEW FEATURES
|
||||
|
|
33
pom.xml
33
pom.xml
|
@ -7,12 +7,18 @@
|
|||
<groupId>org.apache</groupId>
|
||||
<artifactId>apache</artifactId>
|
||||
<version>7</version>
|
||||
<!-- Building 'site', you'll see a complaint about parent
|
||||
pom not being found. To fix, I've downloaded apache's pom
|
||||
from here https://repository.apache.org/content/repositories/releases/org/apache/apache/7/apache-7.pom
|
||||
saving it as 'pom.xml' into a directory named 'apache-7.pom'. I then uncommented the below.
|
||||
<relativePath>../apache-7.pom/</relativePath>
|
||||
-->
|
||||
</parent>
|
||||
|
||||
<groupId>org.apache.hbase</groupId>
|
||||
<artifactId>hbase</artifactId>
|
||||
<packaging>jar</packaging>
|
||||
<version>0.89.0-SNAPSHOT</version>
|
||||
<version>0.90.0-SNAPSHOT</version>
|
||||
<name>HBase</name>
|
||||
<description>
|
||||
HBase is the &lt;a href="http://hadoop.apache.org"&rt;Hadoop</a&rt; database. Use it when you need
|
||||
|
@ -137,8 +143,19 @@
|
|||
<repositories>
|
||||
<repository>
|
||||
<id>temp-hadoop</id>
|
||||
<name>Hadoop 0.20.1/2 packaging, thrift, zk</name>
|
||||
<url>http://people.apache.org/~rawson/repo/</url>
|
||||
<name>Hadoop 0.20-append</name>
|
||||
<url>http://people.apache.org/~stack/m2/</url>
|
||||
<snapshots>
|
||||
<enabled>false</enabled>
|
||||
</snapshots>
|
||||
<releases>
|
||||
<enabled>true</enabled>
|
||||
</releases>
|
||||
</repository>
|
||||
<repository>
|
||||
<id>apache-rsync</id>
|
||||
<name>Apache ibiblio rsync repository</name>
|
||||
<url>http://people.apache.org/repo/m2-ibiblio-rsync-repository/</url>
|
||||
<snapshots>
|
||||
<enabled>false</enabled>
|
||||
</snapshots>
|
||||
|
@ -444,7 +461,11 @@
|
|||
<commons-logging.version>1.1.1</commons-logging.version>
|
||||
<commons-math.version>2.1</commons-math.version>
|
||||
<guava.version>r06</guava.version>
|
||||
<hadoop.version>0.20.3-append-r964955-1240</hadoop.version>
|
||||
<!--The below was made by patching branch-0.20-append
|
||||
at revision 1034499 with this hdfs-895 patch:
|
||||
https://issues.apache.org/jira/secure/attachment/12459473/hdfs-895-branch-20-append.txt
|
||||
-->
|
||||
<hadoop.version>0.20.3-append-r1034499-895</hadoop.version>
|
||||
<jasper.version>5.5.23</jasper.version>
|
||||
<jaxb-api.version>2.1</jaxb-api.version>
|
||||
<jetty.version>6.1.25</jetty.version>
|
||||
|
@ -459,7 +480,7 @@
|
|||
<slf4j.version>1.5.8</slf4j.version><!-- newer version available -->
|
||||
<stax-api.version>1.0.1</stax-api.version>
|
||||
<thrift.version>0.2.0</thrift.version><!-- newer version available -->
|
||||
<zookeeper.version>3.3.1</zookeeper.version>
|
||||
<zookeeper.version>3.3.2</zookeeper.version>
|
||||
</properties>
|
||||
|
||||
<!-- Sorted by groups of dependencies then groupId and artifactId -->
|
||||
|
@ -523,7 +544,7 @@
|
|||
<version>${hadoop.version}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.hadoop</groupId>
|
||||
<groupId>org.apache.zookeeper</groupId>
|
||||
<artifactId>zookeeper</artifactId>
|
||||
<version>${zookeeper.version}</version>
|
||||
</dependency>
|
||||
|
|
Loading…
Reference in New Issue