Skip to content
This repository has been archived by the owner on Sep 21, 2021. It is now read-only.

Commit

Permalink
Upgrading to Selenium 3.14.0
Browse files Browse the repository at this point in the history
  • Loading branch information
diemol committed Aug 16, 2018
1 parent 07c9d01 commit 1f703df
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 3 deletions.
10 changes: 8 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -55,10 +55,10 @@
</developers>

<properties>
<selenium-server.major-minor.version>3.13</selenium-server.major-minor.version>
<selenium-server.major-minor.version>3.14</selenium-server.major-minor.version>
<selenium-server.patch-level.version>0</selenium-server.patch-level.version>
<!-- This needs to match what is in the Selenium Server pom file -->
<jetty.version>9.4.8.v20171121</jetty.version>
<jetty.version>9.4.8.v20180619</jetty.version>
<docker-client.version>8.11.7</docker-client.version>
<kubernetes-client.version>4.0.0</kubernetes-client.version>
<junit.version>4.12</junit.version>
Expand Down Expand Up @@ -224,6 +224,12 @@
<artifactId>asciitable</artifactId>
<version>0.3.2</version>
</dependency>
<!-- https://mvnrepository.com/artifact/com.google.code.gson/gson -->
<dependency>
<groupId>com.google.code.gson</groupId>
<artifactId>gson</artifactId>
<version>2.8.5</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
import org.openqa.grid.internal.utils.configuration.GridHubConfiguration;
import org.openqa.grid.web.servlet.RegistryBasedServlet;
import org.openqa.selenium.MutableCapabilities;
import org.openqa.selenium.internal.BuildInfo;
import org.openqa.selenium.BuildInfo;

import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
Expand All @@ -26,6 +26,7 @@ public class ZaleniumConsoleServlet extends RegistryBasedServlet {
private static String coreVersion;
private TemplateRenderer templateRenderer;

@SuppressWarnings("unused")
public ZaleniumConsoleServlet() {
this(null);
}
Expand Down

0 comments on commit 1f703df

Please sign in to comment.