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> ** Changed in: tomcat7 (Ubuntu) Status: Incomplete => Confirmed ** Changed in: tomcat7 (Ubuntu) Assignee: (unassigned) => Joshua Powers (powersj) -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1664179 Title: Wrong POM dependency in javax.servlet.jsp:jsp-api:2.2 To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/tomcat7/+bug/1664179/+subscriptions -- ubuntu-bugs mailing list [email protected] https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
