This is an automated email from the ASF dual-hosted git repository. lukaszlenart pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/struts-examples.git
commit 3b200a1757949c57e3a743c4fdd7ee28b6b6be0c Author: Lukasz Lenart <lukaszlen...@apache.org> AuthorDate: Thu Jun 9 14:58:09 2022 +0200 Upgrades to Servlet API 3.1 --- tiles/src/main/webapp/WEB-INF/web.xml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/tiles/src/main/webapp/WEB-INF/web.xml b/tiles/src/main/webapp/WEB-INF/web.xml index 485a9cb..401c434 100644 --- a/tiles/src/main/webapp/WEB-INF/web.xml +++ b/tiles/src/main/webapp/WEB-INF/web.xml @@ -1,8 +1,9 @@ <?xml version="1.0" encoding="UTF-8"?> -<web-app id="struts_blank" version="2.4" - xmlns="http://java.sun.com/xml/ns/j2ee" +<web-app xmlns="http://xmlns.jcp.org/xml/ns/javaee" 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"> + xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee + http://xmlns.jcp.org/xml/ns/javaee/web-app_3_1.xsd" + version="3.1"> <display-name>Struts Tiles 2 Demo</display-name>