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 7401e5b5e8
commit ce53c8eb0c
2 changed files with 7 additions and 4 deletions

View File

@ -587,6 +587,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>
@ -461,7 +461,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>
@ -472,7 +472,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>
@ -591,7 +591,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>