diff --git a/VERSION.txt b/VERSION.txt index d49e1788209..d81ea6fa6b3 100644 --- a/VERSION.txt +++ b/VERSION.txt @@ -12,6 +12,7 @@ jetty-7.1.4-SNAPSHOT + 315744 Fixed STOP.PORT and STOP.KEY in start.jar + 315748 Removed --fromDaemon from start.jar + 315925 Improved context xml configuration handling + + 315995 Incorrect package name in system classes list + JETTY-1231 Support context request log handler jetty-7.1.3.v20100526 diff --git a/jetty-webapp/src/main/java/org/eclipse/jetty/webapp/WebAppContext.java b/jetty-webapp/src/main/java/org/eclipse/jetty/webapp/WebAppContext.java index cace9400dbe..fb8ede6f401 100644 --- a/jetty-webapp/src/main/java/org/eclipse/jetty/webapp/WebAppContext.java +++ b/jetty-webapp/src/main/java/org/eclipse/jetty/webapp/WebAppContext.java @@ -90,7 +90,7 @@ public class WebAppContext extends ServletContextHandler "javax.", // Java SE classes (per servlet spec v2.5 / SRV.9.7.2) "org.xml.", // needed by javax.xml "org.w3c.", // needed by javax.xml - "apache.commons.logging.", // special case + "org.apache.commons.logging.", // TODO: review if special case still needed "org.eclipse.jetty.continuation.", // webapp cannot change continuation classes "org.eclipse.jetty.jndi.", // webapp cannot change naming classes "org.eclipse.jetty.plus.jaas.", // webapp cannot change jaas classes