Skip to content
This repository was archived by the owner on Feb 2, 2025. It is now read-only.

Commit 245c8fd

Browse files
committed
Updated dependencies
Exclusions to make dependencies to work with Selenium 4
1 parent ded6cc6 commit 245c8fd

File tree

2 files changed

+34
-14
lines changed

2 files changed

+34
-14
lines changed

README.md

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -116,11 +116,7 @@ to know when to update drivers you use.
116116

117117
Drivers can also be fetched with [https://github.com/Ardesco/selenium-standalone-server-plugin|Selenium Driver Binary Downloader plugin].
118118

119-
<<<<<<< HEAD
120-
With Selenium 4 [https://github.com/bonigarcia/webdrivermanager|WebdriverManager] is taken to use, so handling of drivers can also be done with standalone JAR from tests itself.
121-
=======
122119
With At 3.141.59.265 [https://github.com/bonigarcia/webdrivermanager|WebdriverManager] is taken to use, so handling of drivers can also be done with standalone JAR from tests itself.
123-
>>>>>>> 6b856261db4247ab771ecfafe4912c36a508aef1
124120

125121
__ https://seleniumhq.github.io/selenium/docs/api/py/index.html#drivers
126122
__ https://en.wikipedia.org/wiki/PATH_(variable)

pom.xml

Lines changed: 34 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
<groupId>com.github.hi-fi</groupId>
77
<artifactId>robotframework-seleniumlibrary</artifactId>
8-
<version>4.0.0-alpha-1.0-SNAPSHOT</version>
8+
<version>4.0.0-alpha-2.0-SNAPSHOT</version>
99
<packaging>jar</packaging>
1010

1111
<name>Robot Framework :: SeleniumLibrary</name>
@@ -71,7 +71,7 @@
7171
<java.version>1.8</java.version>
7272
<robotframework.maven.plugin.version>1.5.1</robotframework.maven.plugin.version>
7373
<robotframework.version>3.1.2</robotframework.version>
74-
<selenium.version>4.0.0-alpha-1</selenium.version>
74+
<selenium.version>4.0.0-alpha-2</selenium.version>
7575
<keywords.class>SeleniumLibrary</keywords.class>
7676
<browser>jbrowser</browser>
7777
<downloadWebDriver>False</downloadWebDriver>
@@ -118,7 +118,7 @@
118118
<dependency>
119119
<groupId>io.appium</groupId>
120120
<artifactId>java-client</artifactId>
121-
<version>7.0.0</version>
121+
<version>7.2.0</version>
122122
<exclusions>
123123
<exclusion>
124124
<groupId>org.seleniumhq.selenium</groupId>
@@ -139,12 +139,36 @@
139139
<dependency>
140140
<groupId>com.machinepublishers</groupId>
141141
<artifactId>jbrowserdriver</artifactId>
142-
<version>1.1.0-RC1</version>
142+
<version>1.1.0-RC2</version>
143+
<exclusions>
144+
<exclusion>
145+
<groupId>org.seleniumhq.selenium</groupId>
146+
<artifactId>selenium-remote-driver</artifactId>
147+
</exclusion>
148+
<exclusion>
149+
<groupId>org.seleniumhq.selenium</groupId>
150+
<artifactId>selenium-api</artifactId>
151+
</exclusion>
152+
</exclusions>
143153
</dependency>
144154
<dependency>
145155
<groupId>org.seleniumhq.selenium</groupId>
146156
<artifactId>htmlunit-driver</artifactId>
147-
<version>2.35.1</version>
157+
<version>2.36.0</version>
158+
<exclusions>
159+
<exclusion>
160+
<groupId>org.seleniumhq.selenium</groupId>
161+
<artifactId>selenium-remote-driver</artifactId>
162+
</exclusion>
163+
<exclusion>
164+
<groupId>org.seleniumhq.selenium</groupId>
165+
<artifactId>selenium-api</artifactId>
166+
</exclusion>
167+
<exclusion>
168+
<groupId>org.seleniumhq.selenium</groupId>
169+
<artifactId>selenium-support</artifactId>
170+
</exclusion>
171+
</exclusions>
148172
</dependency>
149173
<dependency>
150174
<groupId>org.mockito</groupId>
@@ -155,7 +179,7 @@
155179
<dependency>
156180
<groupId>io.github.bonigarcia</groupId>
157181
<artifactId>webdrivermanager</artifactId>
158-
<version>3.4.0</version>
182+
<version>3.6.2</version>
159183
</dependency>
160184
</dependencies>
161185

@@ -295,7 +319,7 @@
295319
<!-- Weave the failure handler into the code -->
296320
<groupId>org.codehaus.mojo</groupId>
297321
<artifactId>aspectj-maven-plugin</artifactId>
298-
<version>1.10</version>
322+
<version>1.11</version>
299323
<executions>
300324
<execution>
301325
<goals>
@@ -325,7 +349,7 @@
325349
<!-- Set 1.7 as target, use project source encoding -->
326350
<groupId>org.apache.maven.plugins</groupId>
327351
<artifactId>maven-compiler-plugin</artifactId>
328-
<version>3.7.0</version>
352+
<version>3.8.0</version>
329353
<configuration>
330354
<source>${java.version}</source>
331355
<target>${java.version}</target>
@@ -353,7 +377,7 @@
353377
<!-- Build the fat jar with all dependencies -->
354378
<groupId>org.apache.maven.plugins</groupId>
355379
<artifactId>maven-assembly-plugin</artifactId>
356-
<version>2.6</version>
380+
<version>3.1.0</version>
357381
<configuration>
358382
<archive>
359383
<manifest>
@@ -446,7 +470,7 @@
446470
<plugin>
447471
<groupId>org.codehaus.mojo</groupId>
448472
<artifactId>build-helper-maven-plugin</artifactId>
449-
<version>1.10</version>
473+
<version>3.0.0</version>
450474
<executions>
451475
<execution>
452476
<id>attach-artifacts</id>

0 commit comments

Comments
 (0)