HADOOP-10717. HttpServer2 should load jsp DTD from local jars instead of going remote. Contributed by Dapeng Sun.

This commit is contained in:
Haohui Mai 2014-06-24 17:51:21 +00:00
parent 06bc026c21
commit 7e2bdd5255
3 changed files with 12 additions and 0 deletions

View File

@ -538,6 +538,9 @@ Release 2.5.1 - 2014-09-05
HADOOP-10956. Fix create-release script to include docs and necessary txt
files. (kasha)
HADOOP-10717. HttpServer2 should load jsp DTD from local jars instead of
going remote. (Dapeng Sun via wheat9)
OPTIMIZATIONS
BUG FIXES

View File

@ -104,6 +104,11 @@
<scope>compile</scope>
</dependency>
<dependency>
<groupId>javax.servlet.jsp</groupId>
<artifactId>jsp-api</artifactId>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>com.sun.jersey</groupId>
<artifactId>jersey-core</artifactId>

View File

@ -110,6 +110,10 @@
<groupId>javax.servlet</groupId>
<artifactId>servlet-api</artifactId>
</exclusion>
<exclusion>
<groupId>javax.servlet.jsp</groupId>
<artifactId>jsp-api</artifactId>
</exclusion>
<exclusion>
<groupId>org.mortbay.jetty</groupId>
<artifactId>jetty</artifactId>