Repository: hadoop Updated Branches: refs/heads/branch-2.7.3 490bcda71 -> 31898c0a9
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) (cherry picked from commit e8c253d500491dbef5da5c3b65492a27e7b6977e) Project: http://git-wip-us.apache.org/repos/asf/hadoop/repo Commit: http://git-wip-us.apache.org/repos/asf/hadoop/commit/31898c0a Tree: http://git-wip-us.apache.org/repos/asf/hadoop/tree/31898c0a Diff: http://git-wip-us.apache.org/repos/asf/hadoop/diff/31898c0a Branch: refs/heads/branch-2.7.3 Commit: 31898c0a9386c46eb2fb03ea78d7f8d9a0aa95ea Parents: 490bcda Author: Akira Ajisaka <[email protected]> Authored: Mon Jul 11 17:21:56 2016 -0700 Committer: Akira Ajisaka <[email protected]> Committed: Mon Jul 11 17:25:21 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/31898c0a/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 fb95f1b..3919f2e 100644 --- a/hadoop-common-project/hadoop-common/CHANGES.txt +++ b/hadoop-common-project/hadoop-common/CHANGES.txt @@ -108,6 +108,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/31898c0a/hadoop-project/pom.xml ---------------------------------------------------------------------- diff --git a/hadoop-project/pom.xml b/hadoop-project/pom.xml index ca65505..b646304 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]
