From 1570cd5309f7897e0d654095484324d73b673b34 Mon Sep 17 00:00:00 2001
From: Daniel Gerhardt <code@dgerhardt.net>
Date: Thu, 29 Sep 2016 14:18:53 +0200
Subject: [PATCH] Migrate to Jetty 9.3 for development

Jetty 9.3 increases the JRE requirement to version 8.
---
 README.md | 2 +-
 pom.xml   | 6 +++---
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/README.md b/README.md
index ab649cee6..361bc83e5 100644
--- a/README.md
+++ b/README.md
@@ -85,7 +85,7 @@ Because all dependencies are handled by Maven, a complete build is done with:
 
 	mvn install
 
-*Note:* Java 1.7 JDK is required and must be installed prior to building
+*Note:* Java 1.8 JDK is required and must be installed prior to building
 ARSnova.
 
 ### Requirements
diff --git a/pom.xml b/pom.xml
index 22ce34749..dba35808c 100644
--- a/pom.xml
+++ b/pom.xml
@@ -325,7 +325,7 @@
 			<plugin>
 				<groupId>org.eclipse.jetty</groupId>
 				<artifactId>jetty-maven-plugin</artifactId>
-				<version>9.2.19.v20160908</version>
+				<version>9.3.12.v20160915</version>
 				<configuration>
 					<scanIntervalSeconds>1</scanIntervalSeconds>
 					<webApp>
@@ -333,11 +333,11 @@
 						<webInfIncludeJarPattern>^$</webInfIncludeJarPattern>
 					</webApp>
 					<contextHandlers>
-						<contextHandler implementation="org.eclipse.jetty.webapp.WebAppContext">
+						<contextHandler implementation="org.eclipse.jetty.maven.plugin.JettyWebAppContext">
 							<contextPath>/mobile</contextPath>
 							<resourceBase>${mobile.path}</resourceBase>
 						</contextHandler>
-						<contextHandler implementation="org.eclipse.jetty.webapp.WebAppContext">
+						<contextHandler implementation="org.eclipse.jetty.maven.plugin.JettyWebAppContext">
 							<contextPath>/customization</contextPath>
 							<resourceBase>${customization.path}</resourceBase>
 						</contextHandler>
-- 
GitLab