From 16d9ee4bd5ae9df1635711e46160b720af2c113c Mon Sep 17 00:00:00 2001 From: "Connor \"SIGSTACKFAULT\" King" Date: Wed, 12 Jan 2022 14:22:44 -0500 Subject: [PATCH 1/2] Change the java version on my machine, Maven defaults to 1.7, which doesn't work. --- docs/Installing-the-project.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/docs/Installing-the-project.md b/docs/Installing-the-project.md index a354af7f1..ce7220fda 100644 --- a/docs/Installing-the-project.md +++ b/docs/Installing-the-project.md @@ -17,6 +17,14 @@ Add the following to pom.xml: ``` +If you haven't already, change the Java version: +``` + + 11 + 11 + +``` + If it is necessary to change the version of Selenium then you can configure pom.xml like following: ``` From 7d7f10186f0b65c8dcc08e528a654741bb3893e7 Mon Sep 17 00:00:00 2001 From: "Connor \"SIGSTACKFAULT\" King" Date: Fri, 21 Jan 2022 12:47:03 -0500 Subject: [PATCH 2/2] use 1.8 which is the minimum apparently --- docs/Installing-the-project.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/Installing-the-project.md b/docs/Installing-the-project.md index ce7220fda..8417f9f79 100644 --- a/docs/Installing-the-project.md +++ b/docs/Installing-the-project.md @@ -20,8 +20,8 @@ Add the following to pom.xml: If you haven't already, change the Java version: ``` - 11 - 11 + 1.8 + 1.8 ```