[JWebUnit-development] [ jwebunit-Bugs-3561726 ] Need Servlet API v3 support
Brought to you by:
henryju
|
From: SourceForge.net <no...@so...> - 2012-08-25 17:25:02
|
Bugs item #3561726, was opened at 2012-08-25 10:25 Message generated for change (Tracker Item Submitted) made by ftonello You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=497982&aid=3561726&group_id=61302 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: Maven Group: None Status: Open Resolution: None Priority: 5 Private: No Submitted By: Fran Tonello (ftonello) Assigned to: Julien HENRY (henryju) Summary: Need Servlet API v3 support Initial Comment: Currently, JWebUnit depends on v2.5 of the Java servlet-api. With many sites switching to Tomcat 7 (which supports and *provides* Servlet V3), JWU's dependency on the old servlet-api causes both versions to be added to the class path, which causes class conflicts which break the app and tests. Explicitly excluding JWU's dependency on v2.5 in a client POM breaks JWU. What we really need is a new version of JWebUnit built with the new Servlet API release. I propose changing the servlet API dependency in JWebUnit's POM to this: <dependency> <groupId>javax.servlet</groupId> <artifactId>javax.servlet-api</artifactId> <version>3.0.1</version> </dependency> (BTW, note that the artifactId has changed.) Thanks!!! ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=497982&aid=3561726&group_id=61302 |