Repository: hadoop Updated Branches: refs/heads/trunk c447efebd -> 7bd5d4272
HADOOP-13297. Add missing dependency in setting maven-remote-resource-plugin to fix builds. Contributed by Sean Busbey. Project: http://git-wip-us.apache.org/repos/asf/hadoop/repo Commit: http://git-wip-us.apache.org/repos/asf/hadoop/commit/7bd5d427 Tree: http://git-wip-us.apache.org/repos/asf/hadoop/tree/7bd5d427 Diff: http://git-wip-us.apache.org/repos/asf/hadoop/diff/7bd5d427 Branch: refs/heads/trunk Commit: 7bd5d4272cd686e06c5d5fcc489b69312dacb47b Parents: c447efe Author: Akira Ajisaka <[email protected]> Authored: Mon Jul 11 17:21:56 2016 -0700 Committer: Akira Ajisaka <[email protected]> Committed: Mon Jul 11 17:21:56 2016 -0700 ---------------------------------------------------------------------- hadoop-project/pom.xml | 7 +++++++ 1 file changed, 7 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/hadoop/blob/7bd5d427/hadoop-project/pom.xml ---------------------------------------------------------------------- diff --git a/hadoop-project/pom.xml b/hadoop-project/pom.xml index e6858a2..0a7a16d 100644 --- a/hadoop-project/pom.xml +++ b/hadoop-project/pom.xml @@ -1281,6 +1281,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]
