HADOOP-9260. Hadoop version may be not correct when starting name node or data node. Contributed by Chris Nauroth

git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/trunk@1442639 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Jason Darrell Lowe 2013-02-05 16:02:52 +00:00
parent bdb5342b2d
commit 96398870b4
2 changed files with 11 additions and 2 deletions

View File

@ -91,13 +91,19 @@
<includes> <includes>
<include>${project.artifactId}-${project.version}.jar</include> <include>${project.artifactId}-${project.version}.jar</include>
<include>${project.artifactId}-${project.version}-tests.jar</include> <include>${project.artifactId}-${project.version}-tests.jar</include>
<include>${project.artifactId}-${project.version}-sources.jar</include>
<include>${project.artifactId}-${project.version}-test-sources.jar</include>
</includes> </includes>
<excludes> <excludes>
<exclude>hadoop-tools-dist-*.jar</exclude> <exclude>hadoop-tools-dist-*.jar</exclude>
</excludes> </excludes>
</fileSet> </fileSet>
<fileSet>
<directory>${project.build.directory}</directory>
<outputDirectory>/share/hadoop/${hadoop.component}/sources</outputDirectory>
<includes>
<include>${project.artifactId}-${project.version}-sources.jar</include>
<include>${project.artifactId}-${project.version}-test-sources.jar</include>
</includes>
</fileSet>
<fileSet> <fileSet>
<directory>${basedir}/dev-support/jdiff</directory> <directory>${basedir}/dev-support/jdiff</directory>
<outputDirectory>/share/hadoop/${hadoop.component}/jdiff</outputDirectory> <outputDirectory>/share/hadoop/${hadoop.component}/jdiff</outputDirectory>

View File

@ -602,6 +602,9 @@ Release 2.0.3-alpha - Unreleased
HADOOP-9252. In StringUtils, humanReadableInt(..) has a race condition and HADOOP-9252. In StringUtils, humanReadableInt(..) has a race condition and
the synchronization of limitDecimalTo2(double) can be avoided. (szetszwo) the synchronization of limitDecimalTo2(double) can be avoided. (szetszwo)
HADOOP-9260. Hadoop version may be not correct when starting name node or
data node. (Chris Nauroth via jlowe)
Release 2.0.2-alpha - 2012-09-07 Release 2.0.2-alpha - 2012-09-07
INCOMPATIBLE CHANGES INCOMPATIBLE CHANGES