Comment 4 for bug 1664179

Revision history for this message
Joshua Powers (powersj) wrote :

Thanks for the table. Looking at the docs it does look like 2.2 JSP should have 3.0 servlet and 2.2 EL, therefore I believe the following changes would fix this:

diff --git a/debian/javaxpoms/jsp-api.pom b/debian/javaxpoms/jsp-api.pom
index 56271e0..e2dbf6d 100644
--- a/debian/javaxpoms/jsp-api.pom
+++ b/debian/javaxpoms/jsp-api.pom
@@ -19,7 +19,7 @@
   <modelVersion>4.0.0</modelVersion>
   <groupId>javax.servlet.jsp</groupId>
   <artifactId>jsp-api</artifactId>
- <version>@MAVEN.DEPLOY.VERSION@</version>
+ <version>2.2</version>
   <description>JSP package</description>
   <url>http://tomcat.apache.org/</url>
   <licenses>
@@ -43,13 +43,13 @@
     <dependency>
       <groupId>javax.el</groupId>
       <artifactId>el-api</artifactId>
- <version>@MAVEN.DEPLOY.VERSION@</version>
+ <version>2.2</version>
       <scope>compile</scope>
     </dependency>
     <dependency>
       <groupId>javax.servlet</groupId>
       <artifactId>servlet-api</artifactId>
- <version>@MAVEN.DEPLOY.VERSION@</version>
+ <version>3.0</version>
       <scope>compile</scope>
     </dependency>
   </dependencies>