Skip to content

Commit

Permalink
chore: Use Jakarta and Servlet 6.0 in web.xml
Browse files Browse the repository at this point in the history
  • Loading branch information
mat3e committed Jul 11, 2024
1 parent 1bf494e commit 59aa7d8
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions embedded/ee10-servlet-server/src/main/webapp/WEB-INF/web.xml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns="http://xmlns.jcp.org/xml/ns/javaee"
<web-app xmlns="https://jakarta.ee/xml/ns/jakartaee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
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>Demo of Servlet 3.1</display-name>
xsi:schemaLocation="https://jakarta.ee/xml/ns/jakartaee
https://jakarta.ee/xml/ns/jakartaee/web-app_6_0.xsd"
version="6.0">
<display-name>Demo of Servlet 6.0</display-name>
</web-app>

0 comments on commit 59aa7d8

Please sign in to comment.