Repository: hadoop Updated Branches: refs/heads/branch-2 89121745c -> 02b037f62
HADOOP-13297. Add missing dependency in setting maven-remote-resource-plugin to fix builds. Contributed by Sean Busbey. (cherry picked from commit 7bd5d4272cd686e06c5d5fcc489b69312dacb47b) Project: http://git-wip-us.apache.org/repos/asf/hadoop/repo Commit: http://git-wip-us.apache.org/repos/asf/hadoop/commit/02b037f6 Tree: http://git-wip-us.apache.org/repos/asf/hadoop/tree/02b037f6 Diff: http://git-wip-us.apache.org/repos/asf/hadoop/diff/02b037f6 Branch: refs/heads/branch-2 Commit: 02b037f6257e7379b6bbd656ccbe4472d3f46c40 Parents: 8912174 Author: Akira Ajisaka <[email protected]> Authored: Mon Jul 11 17:21:56 2016 -0700 Committer: Akira Ajisaka <[email protected]> Committed: Mon Jul 11 17:22:27 2016 -0700 ---------------------------------------------------------------------- hadoop-project/pom.xml | 7 +++++++ 1 file changed, 7 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/hadoop/blob/02b037f6/hadoop-project/pom.xml ---------------------------------------------------------------------- diff --git a/hadoop-project/pom.xml b/hadoop-project/pom.xml index b40ea1d..2be74de 100644 --- a/hadoop-project/pom.xml +++ b/hadoop-project/pom.xml @@ -1138,6 +1138,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]
