HADOOP-13297. Add missing dependency in setting maven-remote-resource-plugin to fix builds. Contributed by Sean Busbey.
(cherry picked from commit7bd5d4272c
) (cherry picked from commit02b037f625
)
This commit is contained in:
parent
6759cbc56a
commit
e8c253d500
|
@ -123,6 +123,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
|
||||
|
|
|
@ -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>
|
||||
|
|
Loading…
Reference in New Issue