Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJan Bartel2014-08-13 01:00:27 +0000
committerJan Bartel2014-08-13 01:01:05 +0000
commitaedfb662b6aad6f1157edab7f5a08850b0745645 (patch)
tree9ce4fdd6fadc02d15f9e07f63e4117eeff5e5eb4
parent1d5998f02e43ff9e081583a84fcc4525965b5ab7 (diff)
downloadorg.eclipse.jetty.project-aedfb662b6aad6f1157edab7f5a08850b0745645.tar.gz
org.eclipse.jetty.project-aedfb662b6aad6f1157edab7f5a08850b0745645.tar.xz
org.eclipse.jetty.project-aedfb662b6aad6f1157edab7f5a08850b0745645.zip
441649 - Update to jsp and el Apache Jasper 8.0.9
-rw-r--r--apache-jsp/pom.xml6
-rw-r--r--jetty-distribution/pom.xml4
-rw-r--r--pom.xml2
3 files changed, 3 insertions, 9 deletions
diff --git a/apache-jsp/pom.xml b/apache-jsp/pom.xml
index 2dc05a269a..7153ed9319 100644
--- a/apache-jsp/pom.xml
+++ b/apache-jsp/pom.xml
@@ -74,12 +74,6 @@
<artifactId>javax.servlet-api</artifactId>
</dependency>
- <!-- JSP Api -->
- <dependency>
- <groupId>javax.servlet.jsp</groupId>
- <artifactId>javax.servlet.jsp-api</artifactId>
- </dependency>
-
<!-- JSP Impl -->
<dependency>
<groupId>org.mortbay.jasper</groupId>
diff --git a/jetty-distribution/pom.xml b/jetty-distribution/pom.xml
index 91a2d9608b..fc4a4e9485 100644
--- a/jetty-distribution/pom.xml
+++ b/jetty-distribution/pom.xml
@@ -477,8 +477,8 @@
<goal>copy-dependencies</goal>
</goals>
<configuration>
- <includeGroupIds>org.eclipse.jetty,org.eclipse.jetty.toolchain,javax.servlet.jsp,org.mortbay.jasper,org.mortbay.jasper,org.eclipse.jetty.orbit</includeGroupIds>
- <includeArtifactIds>apache-jsp,javax.servlet.jsp-api,apache-el,org.eclipse.jdt.core</includeArtifactIds>
+ <includeGroupIds>org.eclipse.jetty,org.eclipse.jetty.toolchain,org.mortbay.jasper,org.eclipse.jetty.orbit</includeGroupIds>
+ <includeArtifactIds>apache-jsp,apache-el,org.eclipse.jdt.core</includeArtifactIds>
<includeTypes>jar</includeTypes>
<prependGroupId>true</prependGroupId>
<outputDirectory>${assembly-directory}/lib/apache-jsp</outputDirectory>
diff --git a/pom.xml b/pom.xml
index 75a64ee8b1..588b696e1a 100644
--- a/pom.xml
+++ b/pom.xml
@@ -540,7 +540,7 @@
<dependency>
<groupId>org.mortbay.jasper</groupId>
<artifactId>apache-jsp</artifactId>
- <version>8.0.3.v20140313</version>
+ <version>8.0.9.M0</version>
</dependency>
<dependency>

Back to the top