Index: /FCKeditor.Java/branches/2.4/pom.xml
===================================================================
--- /FCKeditor.Java/branches/2.4/pom.xml	(revision 1336)
+++ /FCKeditor.Java/branches/2.4/pom.xml	(revision 1337)
@@ -108,4 +108,6 @@
 						</resource>
 					</webResources>
+					<webXml>src/main/webapp/WEB-INF/web_war.xml</webXml>
+					<warSourceExcludes>WEB-INF/web_*.xml,WEB-INF/tld/</warSourceExcludes>
 				</configuration>
 			</plugin>
Index: /FCKeditor.Java/branches/2.4/src/main/webapp/WEB-INF/web_war.xml
===================================================================
--- /FCKeditor.Java/branches/2.4/src/main/webapp/WEB-INF/web_war.xml	(revision 1337)
+++ /FCKeditor.Java/branches/2.4/src/main/webapp/WEB-INF/web_war.xml	(revision 1337)
@@ -0,0 +1,32 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<web-app version="2.4" xmlns="http://java.sun.com/xml/ns/j2ee"
+	xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+	xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd"
+>
+	<!--
+		The new minimal web.xml. All init parameters known from the 
+		version 2.3 are setted as defaults. You only need to specify these 
+		parameters, if you need different ones.
+		
+		@version $Id:web.xml 1109 2007-11-12 17:26:34 +0000 (Mo, 12 Nov 2007) th-schwarz $
+		@author <a href="mailto:th-schwarz@users.sourceforge.net">Thilo Schwarz</a>
+	-->
+
+	<display-name>FCKeditor.Java Sample Web Application</display-name>
+	<description>FCKeditor.Java Sample Web Application</description>
+
+	<servlet>
+		<servlet-name>Connector</servlet-name>
+		<servlet-class>
+			net.fckeditor.connector.ConnectorServlet
+		</servlet-class>
+		<load-on-startup>1</load-on-startup>
+	</servlet>
+
+	<servlet-mapping>
+		<servlet-name>Connector</servlet-name>
+		<url-pattern>
+			/fckeditor/editor/filemanager/connectors/*
+		</url-pattern>
+	</servlet-mapping>
+</web-app>
