HADOOP-11995. Make jetty version configurable from the maven command line. Contributed by Sriharsha Devineni.

This commit is contained in:
Haohui Mai 2015-05-19 18:28:20 -07:00
parent b5ba6979b7
commit ed320da2ba
2 changed files with 7 additions and 4 deletions

View File

@ -122,6 +122,9 @@ Release 2.8.0 - UNRELEASED
HADOOP-11103. Clean up RemoteException (Sean Busbey via vinayakumarb)
HADOOP-11995. Make jetty version configurable from the maven command line.
(Sriharsha Devineni via wheat9)
OPTIMIZATIONS
HADOOP-11785. Reduce the number of listStatus operation in distcp

View File

@ -32,7 +32,7 @@
<properties>
<failIfNoTests>false</failIfNoTests>
<maven.test.redirectTestOutputToFile>true</maven.test.redirectTestOutputToFile>
<jetty.version>6.1.26</jetty.version>
<test.exclude>_</test.exclude>
<test.exclude.pattern>_</test.exclude.pattern>
@ -460,7 +460,7 @@
<dependency>
<groupId>org.mortbay.jetty</groupId>
<artifactId>jetty</artifactId>
<version>6.1.26</version>
<version>${jetty.version}</version>
<exclusions>
<exclusion>
<groupId>org.mortbay.jetty</groupId>
@ -471,7 +471,7 @@
<dependency>
<groupId>org.mortbay.jetty</groupId>
<artifactId>jetty-util</artifactId>
<version>6.1.26</version>
<version>${jetty.version}</version>
</dependency>
<dependency>
<groupId>org.apache.tomcat.embed</groupId>
@ -590,7 +590,7 @@
<dependency>
<groupId>org.mortbay.jetty</groupId>
<artifactId>jetty-servlet-tester</artifactId>
<version>6.1.26</version>
<version>${jetty.version}</version>
</dependency>
<dependency>
<groupId>commons-logging</groupId>