Repository: hadoop Updated Branches: refs/heads/branch-2.8 310c08454 -> 1b7691b4c
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/1b7691b4 Tree: http://git-wip-us.apache.org/repos/asf/hadoop/tree/1b7691b4 Diff: http://git-wip-us.apache.org/repos/asf/hadoop/diff/1b7691b4 Branch: refs/heads/branch-2.8 Commit: 1b7691b4c1f1d24eec1c6c12b7c1adfc7300d29e Parents: 310c084 Author: Akira Ajisaka <[email protected]> Authored: Mon Jul 11 17:21:56 2016 -0700 Committer: Akira Ajisaka <[email protected]> Committed: Mon Jul 11 17:23:22 2016 -0700 ---------------------------------------------------------------------- hadoop-project/pom.xml | 7 +++++++ 1 file changed, 7 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/hadoop/blob/1b7691b4/hadoop-project/pom.xml ---------------------------------------------------------------------- diff --git a/hadoop-project/pom.xml b/hadoop-project/pom.xml index f2ffee5..6ec46cd 100644 --- a/hadoop-project/pom.xml +++ b/hadoop-project/pom.xml @@ -1132,6 +1132,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]
