<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
</head>
<body text="#000000" bgcolor="#FFFFFF">
I just noticed this. Did we discuss this on the call, etc, and I
missed?<br>
<br>
I thought we had decided awhile back that we were going to stick
with Servlet 3.0 for our 3.x release, due to 3.1 being very new and
concerns about container support. In particular, for people running
Tomcat this would require Tomcat 8.x.<br>
<br>
Is there some hard requirement that we can't use Jetty 9.1.x if we
stick with Servlet 3.0? Or is there some 3.1 feature that we need?<br>
<br>
<div class="moz-forward-container"><br>
<br>
-------- Original Message --------
<table class="moz-email-headers-table" cellpadding="0"
cellspacing="0" border="0">
<tbody>
<tr>
<th nowrap="nowrap" valign="BASELINE" align="RIGHT">Subject:
</th>
<td>[java-parent-projects COMMIT]
/java-parent-project-v3/trunk/pom.xml</td>
</tr>
<tr>
<th nowrap="nowrap" valign="BASELINE" align="RIGHT">Date: </th>
<td>Wed, 21 May 2014 01:19:00 -0000</td>
</tr>
<tr>
<th nowrap="nowrap" valign="BASELINE" align="RIGHT">From: </th>
<td><a class="moz-txt-link-abbreviated" href="mailto:noreply@shibboleth.net">noreply@shibboleth.net</a></td>
</tr>
<tr>
<th nowrap="nowrap" valign="BASELINE" align="RIGHT">Reply-To:
</th>
<td><a class="moz-txt-link-abbreviated" href="mailto:noreply@shibboleth.net">noreply@shibboleth.net</a></td>
</tr>
<tr>
<th nowrap="nowrap" valign="BASELINE" align="RIGHT">To: </th>
<td><a class="moz-txt-link-abbreviated" href="mailto:commits@shibboleth.net">commits@shibboleth.net</a></td>
</tr>
</tbody>
</table>
<br>
<br>
<pre>Author: tzeller
Date: Tue May 20 21:19:00 2014
New Revision: 262
URL: <a class="moz-txt-link-freetext" href="http://svn.shibboleth.net/view/java-parent-projects?rev=262&view=rev">http://svn.shibboleth.net/view/java-parent-projects?rev=262&view=rev</a>
Log:
Upgrade Servlet API dependency to 3.1.0 and Servlet JSP API to 2.3.1 to match Jetty 9.1.5 and later.
Add Servlet JSTL as managed dependency to parent-v3 POM.
Add methods to ThreadLocalHttpServlet*Proxy classes for compatibility with the Servlet 3.1.0 API.
Modified:
java-parent-project-v3/trunk/pom.xml
Modified: java-parent-project-v3/trunk/pom.xml
URL: <a class="moz-txt-link-freetext" href="http://svn.shibboleth.net/view/java-parent-projects/java-parent-project-v3/trunk/pom.xml?rev=262&r1=261&r2=262&view=diff">http://svn.shibboleth.net/view/java-parent-projects/java-parent-project-v3/trunk/pom.xml?rev=262&r1=261&r2=262&view=diff</a>
==============================================================================
--- java-parent-project-v3/trunk/pom.xml (original)
+++ java-parent-project-v3/trunk/pom.xml Tue May 20 21:19:00 2014
@@ -319,14 +319,20 @@
<!-- Provided dependencies -->
<dependency>
<groupId>javax.servlet.jsp</groupId>
- <artifactId>jsp-api</artifactId>
- <version>2.1</version>
+ <artifactId>javax.servlet.jsp-api</artifactId>
+ <version>2.3.1</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>javax.servlet-api</artifactId>
- <version>3.0.1</version>
+ <version>3.1.0</version>
+ <scope>provided</scope>
+ </dependency>
+ <dependency>
+ <groupId>javax.servlet</groupId>
+ <artifactId>jstl</artifactId>
+ <version>1.2</version>
<scope>provided</scope>
</dependency>
</pre>
<br>
</div>
<br>
</body>
</html>