You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@struts.apache.org by ni...@apache.org on 2008/03/02 12:13:16 UTC

svn commit: r632737 - in /struts/struts2/trunk/apps/portlet: pom.xml src/main/webapp/WEB-INF/web.xml

Author: nilsga
Date: Sun Mar  2 03:13:15 2008
New Revision: 632737

URL: http://svn.apache.org/viewvc?rev=632737&view=rev
Log:
WW-2509 No need for the FilterDispatcher in the sample application, and removed duplicate entry for commons-lang in the pom.

Modified:
    struts/struts2/trunk/apps/portlet/pom.xml
    struts/struts2/trunk/apps/portlet/src/main/webapp/WEB-INF/web.xml

Modified: struts/struts2/trunk/apps/portlet/pom.xml
URL: http://svn.apache.org/viewvc/struts/struts2/trunk/apps/portlet/pom.xml?rev=632737&r1=632736&r2=632737&view=diff
==============================================================================
--- struts/struts2/trunk/apps/portlet/pom.xml (original)
+++ struts/struts2/trunk/apps/portlet/pom.xml Sun Mar  2 03:13:15 2008
@@ -161,12 +161,6 @@
       <artifactId>log4j</artifactId>
       <version>1.2.9</version>
     </dependency>
-
-        <dependency>
-            <groupId>commons-lang</groupId>
-            <artifactId>commons-lang</artifactId>
-            <version>2.0</version>
-        </dependency>
 		
 		<dependency>
 			<groupId>org.mortbay.jetty</groupId>

Modified: struts/struts2/trunk/apps/portlet/src/main/webapp/WEB-INF/web.xml
URL: http://svn.apache.org/viewvc/struts/struts2/trunk/apps/portlet/src/main/webapp/WEB-INF/web.xml?rev=632737&r1=632736&r2=632737&view=diff
==============================================================================
--- struts/struts2/trunk/apps/portlet/src/main/webapp/WEB-INF/web.xml (original)
+++ struts/struts2/trunk/apps/portlet/src/main/webapp/WEB-INF/web.xml Sun Mar  2 03:13:15 2008
@@ -9,21 +9,6 @@
 		</param-value>
 	</context-param>
 
-    <filter id="filterdispatcher">
-        <filter-name>Struts2</filter-name>
-        <filter-class>org.apache.struts2.dispatcher.FilterDispatcher</filter-class>
-    </filter>
-
-    <filter-mapping>
-        <filter-name>Struts2</filter-name>
-        <url-pattern>/*</url-pattern>
-    </filter-mapping>
-	
-	<listener>
-		<listener-class> org.springframework.web.context.ContextLoaderListener
-			</listener-class>
-	</listener>
-
 	<!-- Uncomment to use the dispatcher servlet -->
 	<!--<servlet id="Struts2PortletDispatcherServlet">
 		<servlet-name>Struts2PortletDispatcherServlet</servlet-name>