Skip to content

Commit a8cf411

Browse files
committed
4.23.0
1 parent 66db05e commit a8cf411

File tree

2 files changed

+12
-15
lines changed

2 files changed

+12
-15
lines changed

README.md

Lines changed: 5 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -75,22 +75,19 @@ HtmlUnit offers many customization options.
7575
Similar to the other WebDriver's the class HtmlUnitDriverOptions can be used to customize your HtmlUnit driver.
7676

7777
```java
78-
final HtmlUnitDriverOptions driverOptions = new HtmlUnitDriverOptions(BrowserVersion.FIREFOX);
78+
final HtmlUnitDriverOptions driverOptions = new HtmlUnitDriverOptions(BrowserVersion.FIREFOX);
7979

80-
// configure e.g.
81-
driverOptions.setCapability(HtmlUnitOption.optThrowExceptionOnScriptError, false);
80+
// configure e.g.
81+
driverOptions.setCapability(HtmlUnitOption.optThrowExceptionOnScriptError, false);
8282

83-
HtmlUnitDriver webDriver = new HtmlUnitDriver(driverOptions);
84-
// use the driver
83+
HtmlUnitDriver webDriver = new HtmlUnitDriver(driverOptions);
84+
// use the driver
8585
```
8686

8787
Please check the
8888

8989
### Selenium compatibility
9090

91-
Starting with Selenium 4.5 we use the same version numbers for the driver - e.g. HtmlUnit-Driver 4.23.0
92-
is for Selenium 4.23.0.
93-
9491
An overview of the different versions, the HtmlUnit version used in each case and the compatibility
9592
can be found in these [tables](compatibility.md).
9693

pom.xml

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

66
<groupId>org.seleniumhq.selenium</groupId>
77
<artifactId>htmlunit3-driver</artifactId>
8-
<version>4.23.0-SNAPSHOT</version>
8+
<version>4.23.0</version>
99

1010
<name>${project.artifactId}</name>
1111
<description>WebDriver compatible driver for HtmlUnit headless browser</description>
@@ -18,15 +18,15 @@
1818
<maven.compiler.source>11</maven.compiler.source>
1919
<maven.compiler.target>11</maven.compiler.target>
2020

21-
<selenium.version>4.22.0</selenium.version>
22-
<htmlunit.version>4.4.0-SNAPSHOT</htmlunit.version>
21+
<selenium.version>4.23.0</selenium.version>
22+
<htmlunit.version>4.4.0</htmlunit.version>
2323

2424
<jetty.version>9.4.55.v20240627</jetty.version>
2525

2626
<checkstyle.version>10.17.0</checkstyle.version>
2727
<spotbugs.version>4.8.6</spotbugs.version>
2828
<archunit.version>1.3.0</archunit.version>
29-
<dependencycheck.version>10.0.2</dependencycheck.version>
29+
<dependencycheck.version>10.0.3</dependencycheck.version>
3030
</properties>
3131

3232
<licenses>
@@ -215,7 +215,7 @@
215215
<plugin>
216216
<groupId>com.github.spotbugs</groupId>
217217
<artifactId>spotbugs-maven-plugin</artifactId>
218-
<version>4.8.6.1</version>
218+
<version>4.8.6.2</version>
219219
<dependencies>
220220
<dependency>
221221
<groupId>com.github.spotbugs</groupId>
@@ -244,7 +244,7 @@
244244
<plugin>
245245
<groupId>org.apache.maven.plugins</groupId>
246246
<artifactId>maven-javadoc-plugin</artifactId>
247-
<version>3.7.0</version>
247+
<version>3.8.0</version>
248248
<configuration>
249249
<quiet>true</quiet>
250250
<detectLinks>true</detectLinks>
@@ -261,7 +261,7 @@
261261
<plugin>
262262
<groupId>org.apache.maven.plugins</groupId>
263263
<artifactId>maven-surefire-plugin</artifactId>
264-
<version>3.3.0</version>
264+
<version>3.3.1</version>
265265
<configuration>
266266
<includes>
267267
<include>**/*.java</include>

0 commit comments

Comments
 (0)