Repository: hadoop Updated Branches: refs/heads/branch-2.6 e64094484 -> 59818313d
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/59818313 Tree: http://git-wip-us.apache.org/repos/asf/hadoop/tree/59818313 Diff: http://git-wip-us.apache.org/repos/asf/hadoop/diff/59818313 Branch: refs/heads/branch-2.6 Commit: 59818313d490e8e509b9cc11cce4f5aec30c4a93 Parents: e640944 Author: Akira Ajisaka <[email protected]> Authored: Mon Jul 11 17:21:56 2016 -0700 Committer: Akira Ajisaka <[email protected]> Committed: Mon Jul 11 17:26:46 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/59818313/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 ac6efad..96980c1 100644 --- a/hadoop-common-project/hadoop-common/CHANGES.txt +++ b/hadoop-common-project/hadoop-common/CHANGES.txt @@ -36,6 +36,9 @@ Release 2.6.5 - UNRELEASED HADOOP-12893. Verify LICENSE.txt and NOTICE.txt. (Xiao Chen and Andrew Wang via aajisaka) + HADOOP-13297. Add missing dependency in setting + maven-remote-resource-plugin to fix builds. (Sean Busbey via aajisaka) + Release 2.6.4 - 2016-02-11 INCOMPATIBLE CHANGES http://git-wip-us.apache.org/repos/asf/hadoop/blob/59818313/hadoop-project/pom.xml ---------------------------------------------------------------------- diff --git a/hadoop-project/pom.xml b/hadoop-project/pom.xml index f09f0dc..bdb4963 100644 --- a/hadoop-project/pom.xml +++ b/hadoop-project/pom.xml @@ -1042,6 +1042,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]
