Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJan Bartel2014-01-17 03:36:08 +0000
committerJan Bartel2014-01-17 03:36:08 +0000
commit1e2e3fc7f2a10c563d2f7c1afe64599d1e4849be (patch)
tree166d894d31fe2d66de61bcb7a54efea40efa44d5 /pom.xml
parent93013b36ddc4549b81129d403364a79314d1044b (diff)
downloadorg.eclipse.jetty.project-1e2e3fc7f2a10c563d2f7c1afe64599d1e4849be.tar.gz
org.eclipse.jetty.project-1e2e3fc7f2a10c563d2f7c1afe64599d1e4849be.tar.xz
org.eclipse.jetty.project-1e2e3fc7f2a10c563d2f7c1afe64599d1e4849be.zip
425837 Upgrade to jstl 1.2.2
Diffstat (limited to 'pom.xml')
-rw-r--r--pom.xml23
1 files changed, 18 insertions, 5 deletions
diff --git a/pom.xml b/pom.xml
index 258bb0c6de..f07f29983c 100644
--- a/pom.xml
+++ b/pom.xml
@@ -531,17 +531,30 @@
<!-- JSTL Impl -->
<dependency>
- <groupId>org.eclipse.jetty.orbit</groupId>
- <artifactId>org.apache.taglibs.standard.glassfish</artifactId>
- <version>1.2.0.v201112081803</version>
+ <groupId>org.glassfish.web</groupId>
+ <artifactId>javax.servlet.jsp.jstl</artifactId>
+ <version>1.2.2</version>
<exclusions>
<exclusion>
- <groupId>org.eclipse.jetty.orbit</groupId>
- <artifactId>javax.servlet</artifactId>
+ <groupId>javax.servlet.jsp.jstl</groupId>
+ <artifactId>jstl-api</artifactId>
+ </exclusion>
+ <exclusion>
+ <groupId>javax.servlet</groupId>
+ <artifactId>servlet-api</artifactId>
+ </exclusion>
+ <exclusion>
+ <groupId>javax.servlet.jsp</groupId>
+ <artifactId>jsp-api</artifactId>
+ </exclusion>
+ <exclusion>
+ <groupId>javax.el</groupId>
+ <artifactId>el-api</artifactId>
</exclusion>
</exclusions>
</dependency>
+ <!-- JSTL API -->
<dependency>
<groupId>org.eclipse.jetty.orbit</groupId>
<artifactId>javax.servlet.jsp.jstl</artifactId>

Back to the top