BAEL-305: Updated servlet spec to 3.1.

This commit is contained in:
Christian Rädel 2016-09-03 19:40:09 +02:00
parent 525c93059c
commit 747c3169ee
2 changed files with 6 additions and 2 deletions

View File

@ -17,7 +17,7 @@
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>javax.servlet-api</artifactId>
<version>4.0.0-b01</version>
<version>3.1.0</version>
<scope>provided</scope>
</dependency>
</dependencies>

View File

@ -1,5 +1,9 @@
<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns="http://java.sun.com/xml/ns/javaee" version="2.5">
<web-app xmlns="http://xmlns.jcp.org/xml/ns/javaee"
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">
<servlet>
<servlet-name>front-controller</servlet-name>
<servlet-class>com.baeldung.enterprise.patterns.front.controller.FrontControllerServlet</servlet-class>