From 8246fe7d1cfe79ce86cf4b61b5b65a77179762fd Mon Sep 17 00:00:00 2001
From: Piotr Gawron <piotr.gawron@uni.lu>
Date: Tue, 16 Oct 2018 09:36:32 +0200
Subject: [PATCH] servlet api upgraded to 3.1

---
 pom.xml          | 3 ++-
 rest-api/pom.xml | 2 +-
 web/pom.xml      | 2 +-
 3 files changed, 4 insertions(+), 3 deletions(-)

diff --git a/pom.xml b/pom.xml
index f540a5b37e..ab833e7a52 100644
--- a/pom.xml
+++ b/pom.xml
@@ -73,6 +73,8 @@
 
 		<jackson.version>2.9.7</jackson.version>
 
+		<servlet-api.version>3.1.0</servlet-api.version>
+
 		
 		<primafaces.version>4.0</primafaces.version>
 		<primafaces.themes.version>1.0.8</primafaces.themes.version>
@@ -81,7 +83,6 @@
 		<jsf.version>2.1.7</jsf.version>
 		<jstl.version>1.2</jstl.version>
 
-		<servlet-api.version>2.5</servlet-api.version>
 		
 
 
diff --git a/rest-api/pom.xml b/rest-api/pom.xml
index cfceaad6ea..3b683f303c 100644
--- a/rest-api/pom.xml
+++ b/rest-api/pom.xml
@@ -71,7 +71,7 @@
 
 		<dependency>
 			<groupId>javax.servlet</groupId>
-			<artifactId>servlet-api</artifactId>
+			<artifactId>javax.servlet-api</artifactId>
 			<version>${servlet-api.version}</version>
 			<scope>provided</scope>
 		</dependency>
diff --git a/web/pom.xml b/web/pom.xml
index 7a1b7275c3..161267fb67 100644
--- a/web/pom.xml
+++ b/web/pom.xml
@@ -68,7 +68,7 @@
 		</dependency>
 		<dependency>
 			<groupId>javax.servlet</groupId>
-			<artifactId>servlet-api</artifactId>
+			<artifactId>javax.servlet-api</artifactId>
 			<version>${servlet-api.version}</version>
 			<scope>provided</scope>
 		</dependency>
-- 
GitLab