Repository: hadoop Updated Branches: refs/heads/branch-2.7 6759cbc56 -> e8c253d50
HADOOP-13297. Add missing dependency in setting maven-remote-resource-plugin to fix builds. Contributed by Sean Busbey. (cherry picked from commit 7bd5d4272cd686e06c5d5fcc489b69312dacb47b) (cherry picked from commit 02b037f6257e7379b6bbd656ccbe4472d3f46c40) Project: http://git-wip-us.apache.org/repos/asf/hadoop/repo Commit: http://git-wip-us.apache.org/repos/asf/hadoop/commit/e8c253d5 Tree: http://git-wip-us.apache.org/repos/asf/hadoop/tree/e8c253d5 Diff: http://git-wip-us.apache.org/repos/asf/hadoop/diff/e8c253d5 Branch: refs/heads/branch-2.7 Commit: e8c253d500491dbef5da5c3b65492a27e7b6977e Parents: 6759cbc Author: Akira Ajisaka <[email protected]> Authored: Mon Jul 11 17:21:56 2016 -0700 Committer: Akira Ajisaka <[email protected]> Committed: Mon Jul 11 17:24:35 2016 -0700 ---------------------------------------------------------------------- hadoop-common-project/hadoop-common/CHANGES.txt | 3 +++ hadoop-project/pom.xml | 7 +++++++ 2 files changed, 10 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/hadoop/blob/e8c253d5/hadoop-common-project/hadoop-common/CHANGES.txt ---------------------------------------------------------------------- diff --git a/hadoop-common-project/hadoop-common/CHANGES.txt b/hadoop-common-project/hadoop-common/CHANGES.txt index 4f6d2f9..46667cc 100644 --- a/hadoop-common-project/hadoop-common/CHANGES.txt +++ b/hadoop-common-project/hadoop-common/CHANGES.txt @@ -123,6 +123,9 @@ Release 2.7.3 - UNRELEASED HADOOP-13192. org.apache.hadoop.util.LineReader cannot handle multibyte delimiters correctly. (binde via aajisaka) + HADOOP-13297. Add missing dependency in setting + maven-remote-resource-plugin to fix builds. (Sean Busbey via aajisaka) + Release 2.7.2 - 2016-01-25 INCOMPATIBLE CHANGES http://git-wip-us.apache.org/repos/asf/hadoop/blob/e8c253d5/hadoop-project/pom.xml ---------------------------------------------------------------------- diff --git a/hadoop-project/pom.xml b/hadoop-project/pom.xml index cd72cef..d3e3c64 100644 --- a/hadoop-project/pom.xml +++ b/hadoop-project/pom.xml @@ -1075,6 +1075,13 @@ <resourceBundle>org.apache.hadoop:hadoop-build-tools:${project.version}</resourceBundle> </resourceBundles> </configuration> + <dependencies> + <dependency> + <groupId>org.apache.hadoop</groupId> + <artifactId>hadoop-build-tools</artifactId> + <version>${project.version}</version> + </dependency> + </dependencies> <executions> <execution> <goals> --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
