You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@karaf.apache.org by cs...@apache.org on 2012/09/11 14:45:04 UTC

svn commit: r1383384 - /karaf/trunk/manual/src/main/webapp/users-guide/migration.conf

Author: cschneider
Date: Tue Sep 11 12:45:03 2012
New Revision: 1383384

URL: http://svn.apache.org/viewvc?rev=1383384&view=rev
Log:
KARAF-1186 Removing section for servlet api as it is compatible now

Modified:
    karaf/trunk/manual/src/main/webapp/users-guide/migration.conf

Modified: karaf/trunk/manual/src/main/webapp/users-guide/migration.conf
URL: http://svn.apache.org/viewvc/karaf/trunk/manual/src/main/webapp/users-guide/migration.conf?rev=1383384&r1=1383383&r2=1383384&view=diff
==============================================================================
--- karaf/trunk/manual/src/main/webapp/users-guide/migration.conf (original)
+++ karaf/trunk/manual/src/main/webapp/users-guide/migration.conf Tue Sep 11 12:45:03 2012
@@ -34,15 +34,6 @@ The following table shows side by side t
 | config: | config: |
 | jaas: | jaas: |
 
-h2. Changes in servlet API version
-
-Karaf 3 includes an implementation of the servlet API version 3. This results in the package javax.servlet.api to be exported in version 3 instead of version 2.5. So default imports of this package with version range [2.5,3) will fail now.
-As the servlet API 3 is compatible with servlet API 2.5 you should change your imports to [2.5,4). When using the maven bundle plugin you can do this by using:
-
-{code}
-<Import-Package>*,javax.servlet*;version="[2.5,4)"</Import-Package>
-{code}
-
 h2. Changes in MBeans
 
 For Karaf 3 we did a major refactoring of the module and package structure of Karaf. So almost all mbean interfaces moved to a new package. So if you use the Java interface to access an mbean you will most likely have to change that.