Author: fmeschbe
Date: Tue Aug  5 07:03:06 2008
New Revision: 682715

URL: http://svn.apache.org/viewvc?rev=682715&view=rev
Log:
SLING-593 Convert the empty web.xml file used by the JSP Compiler
to an empty Servlet API 2.4 descriptor.

Modified:
    
incubator/sling/trunk/maven/maven-jspc-plugin/src/main/resources/org/apache/sling/maven/jspc/web.xml

Modified: 
incubator/sling/trunk/maven/maven-jspc-plugin/src/main/resources/org/apache/sling/maven/jspc/web.xml
URL: 
http://svn.apache.org/viewvc/incubator/sling/trunk/maven/maven-jspc-plugin/src/main/resources/org/apache/sling/maven/jspc/web.xml?rev=682715&r1=682714&r2=682715&view=diff
==============================================================================
--- 
incubator/sling/trunk/maven/maven-jspc-plugin/src/main/resources/org/apache/sling/maven/jspc/web.xml
 (original)
+++ 
incubator/sling/trunk/maven/maven-jspc-plugin/src/main/resources/org/apache/sling/maven/jspc/web.xml
 Tue Aug  5 07:03:06 2008
@@ -17,7 +17,9 @@
   specific language governing permissions and limitations
   under the License.
 -->
-<!DOCTYPE web-app PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 
2.3//EN" "http://java.sun.com/dtd/web-app_2_3.dtd";>
-<web-app>
+<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";>
     <!-- This empty file exists to satisfy the JSP Compiler -->
 </web-app>


Reply via email to