HADOOP-9231. Merge 1437140 and 1437143 from trunk
git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/branches/branch-2@1437144 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
b981b59c06
commit
ebf72a71ba
|
@ -129,6 +129,9 @@ Release 2.0.3-alpha - Unreleased
|
||||||
HADOOP-9216. CompressionCodecFactory#getCodecClasses should trim the
|
HADOOP-9216. CompressionCodecFactory#getCodecClasses should trim the
|
||||||
result of parsing by Configuration. (Tsuyoshi Ozawa via todd)
|
result of parsing by Configuration. (Tsuyoshi Ozawa via todd)
|
||||||
|
|
||||||
|
HADOOP-9231. Parametrize staging URL for the uniformity of
|
||||||
|
distributionManagement. (Konstantin Boudnik via suresh)
|
||||||
|
|
||||||
OPTIMIZATIONS
|
OPTIMIZATIONS
|
||||||
|
|
||||||
HADOOP-8866. SampleQuantiles#query is O(N^2) instead of O(N). (Andrew Wang
|
HADOOP-8866. SampleQuantiles#query is O(N^2) instead of O(N). (Andrew Wang
|
||||||
|
|
14
pom.xml
14
pom.xml
|
@ -36,12 +36,12 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xs
|
||||||
|
|
||||||
<distributionManagement>
|
<distributionManagement>
|
||||||
<repository>
|
<repository>
|
||||||
<id>apache.staging.https</id>
|
<id>${distMgmtStagingId}</id>
|
||||||
<name>Apache Release Distribution Repository</name>
|
<name>${distMgmtStagingName}</name>
|
||||||
<url>https://repository.apache.org/service/local/staging/deploy/maven2</url>
|
<url>${distMgmtStagingUrl}</url>
|
||||||
</repository>
|
</repository>
|
||||||
<snapshotRepository>
|
<snapshotRepository>
|
||||||
<id>apache.snapshots.https</id>
|
<id>${distMgmtSnapshotsId}</id>
|
||||||
<name>${distMgmtSnapshotsName}</name>
|
<name>${distMgmtSnapshotsName}</name>
|
||||||
<url>${distMgmtSnapshotsUrl}</url>
|
<url>${distMgmtSnapshotsUrl}</url>
|
||||||
</snapshotRepository>
|
</snapshotRepository>
|
||||||
|
@ -53,7 +53,7 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xs
|
||||||
|
|
||||||
<repositories>
|
<repositories>
|
||||||
<repository>
|
<repository>
|
||||||
<id>apache.snapshots.https</id>
|
<id>${distMgmtSnapshotsId}</id>
|
||||||
<name>${distMgmtSnapshotsName}</name>
|
<name>${distMgmtSnapshotsName}</name>
|
||||||
<url>${distMgmtSnapshotsUrl}</url>
|
<url>${distMgmtSnapshotsUrl}</url>
|
||||||
</repository>
|
</repository>
|
||||||
|
@ -79,8 +79,12 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xs
|
||||||
</organization>
|
</organization>
|
||||||
|
|
||||||
<properties>
|
<properties>
|
||||||
|
<distMgmtSnapshotsId>apache.snapshots.https</distMgmtSnapshotsId>
|
||||||
<distMgmtSnapshotsName>Apache Development Snapshot Repository</distMgmtSnapshotsName>
|
<distMgmtSnapshotsName>Apache Development Snapshot Repository</distMgmtSnapshotsName>
|
||||||
<distMgmtSnapshotsUrl>https://repository.apache.org/content/repositories/snapshots</distMgmtSnapshotsUrl>
|
<distMgmtSnapshotsUrl>https://repository.apache.org/content/repositories/snapshots</distMgmtSnapshotsUrl>
|
||||||
|
<distMgmtStagingId>apache.staging.https</distMgmtStagingId>
|
||||||
|
<distMgmtStagingName>Apache Release Distribution Repository</distMgmtStagingName>
|
||||||
|
<distMgmtStagingUrl>https://repository.apache.org/service/local/staging/deploy/maven2</distMgmtStagingUrl>
|
||||||
</properties>
|
</properties>
|
||||||
|
|
||||||
<modules>
|
<modules>
|
||||||
|
|
Loading…
Reference in New Issue