HADOOP-12526. there are duplicate dependency definitions in pom's (sjlee)
(cherry picked from commit 7802248c23
)
This commit is contained in:
parent
63ed399e1c
commit
7e8467df9f
|
@ -57,11 +57,6 @@
|
|||
<artifactId>jetty-util</artifactId>
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.mortbay.jetty</groupId>
|
||||
<artifactId>jetty-util</artifactId>
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.mortbay.jetty</groupId>
|
||||
<artifactId>jetty</artifactId>
|
||||
|
|
|
@ -18,6 +18,8 @@ Release 2.7.3 - UNRELEASED
|
|||
HADOOP-12296. when setnetgrent returns 0 in linux, exception should be
|
||||
thrown (Chang Li via jlowe)
|
||||
|
||||
HADOOP-12526. there are duplicate dependency definitions in pom's (sjlee)
|
||||
|
||||
Release 2.7.2 - UNRELEASED
|
||||
|
||||
INCOMPATIBLE CHANGES
|
||||
|
|
|
@ -1084,7 +1084,6 @@
|
|||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-enforcer-plugin</artifactId>
|
||||
<inherited>false</inherited>
|
||||
<configuration>
|
||||
<rules>
|
||||
<requireMavenVersion>
|
||||
|
@ -1102,6 +1101,7 @@
|
|||
<goal>enforce</goal>
|
||||
</goals>
|
||||
<phase>pre-clean</phase>
|
||||
<inherited>false</inherited>
|
||||
</execution>
|
||||
<execution>
|
||||
<id>default</id>
|
||||
|
@ -1109,6 +1109,7 @@
|
|||
<goal>enforce</goal>
|
||||
</goals>
|
||||
<phase>validate</phase>
|
||||
<inherited>false</inherited>
|
||||
</execution>
|
||||
<execution>
|
||||
<id>site</id>
|
||||
|
@ -1116,6 +1117,21 @@
|
|||
<goal>enforce</goal>
|
||||
</goals>
|
||||
<phase>pre-site</phase>
|
||||
<inherited>false</inherited>
|
||||
</execution>
|
||||
<execution>
|
||||
<id>depcheck</id>
|
||||
<configuration>
|
||||
<rules>
|
||||
<DependencyConvergence>
|
||||
<uniqueVersions>true</uniqueVersions>
|
||||
</DependencyConvergence>
|
||||
</rules>
|
||||
</configuration>
|
||||
<goals>
|
||||
<goal>enforce</goal>
|
||||
</goals>
|
||||
<phase>verify</phase>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
|
@ -1167,26 +1183,6 @@
|
|||
<includeReports>false</includeReports>
|
||||
</configuration>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-enforcer-plugin</artifactId>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>depcheck</id>
|
||||
<configuration>
|
||||
<rules>
|
||||
<DependencyConvergence>
|
||||
<uniqueVersions>true</uniqueVersions>
|
||||
</DependencyConvergence>
|
||||
</rules>
|
||||
</configuration>
|
||||
<goals>
|
||||
<goal>enforce</goal>
|
||||
</goals>
|
||||
<phase>verify</phase>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
|
||||
|
|
Loading…
Reference in New Issue