Skip to content

Commit

Permalink
4.22.0
Browse files Browse the repository at this point in the history
  • Loading branch information
rbri committed Jun 27, 2024
1 parent 017a2f3 commit ee358f4
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 13 deletions.
11 changes: 6 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,16 +15,17 @@ There are two versions available

### Selenium compatibility

Starting with Selenium 4.5 we use the same version numbers for the driver - e.g. HtmlUnit-Driver 4.21.0
is for Selenium 4.21.0.
Starting with Selenium 4.5 we use the same version numbers for the driver - e.g. HtmlUnit-Driver 4.22.0
is for Selenium 4.22.0.

For an overview about the different version and compatibility please check the following tables:

***htmlunit3-driver***

| selenium | htmlunit-driver | htmlunit | artifactId | JDK |
|----------|-----------------|-----------------|------------------|------|
| 4.21.0 | **4.21.0** | **4.1.0** | htmlunit3-driver | 11 |
| 4.22.0 | **4.22.0** | **4.3.0** | htmlunit3-driver | 11 |
| 4.21.0 | 4.21.0 | 4.1.0 | htmlunit3-driver | 11 |
| 4.20.0 | 4.20.0 | 4.0.0 | htmlunit3-driver | 11 |
| 4.19.1 | 4.19.1 | 4.0.0 | htmlunit3-driver | 11 |
| 4.18.1 | 4.18.1 | 3.11.0 | htmlunit3-driver | 11 |
Expand Down Expand Up @@ -95,14 +96,14 @@ Add to your `pom.xml`:
<dependency>
<groupId>org.seleniumhq.selenium</groupId>
<artifactId>htmlunit3-driver</artifactId>
<version>4.21.0</version>
<version>4.22.0</version>
</dependency>
```

Add to your `build.gradle`:

```groovy
implementation group: 'org.seleniumhq.selenium', name: 'htmlunit3-driver', version: '4.21.0'
implementation group: 'org.seleniumhq.selenium', name: 'htmlunit3-driver', version: '4.22.0'
```


Expand Down
16 changes: 8 additions & 8 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

<groupId>org.seleniumhq.selenium</groupId>
<artifactId>htmlunit3-driver</artifactId>
<version>4.22.0-SNAPSHOT</version>
<version>4.22.0</version>

<name>${project.artifactId}</name>
<description>WebDriver compatible driver for HtmlUnit headless browser</description>
Expand All @@ -19,12 +19,12 @@
<maven.compiler.target>11</maven.compiler.target>

<selenium.version>4.22.0</selenium.version>
<htmlunit.version>4.2.0</htmlunit.version>
<htmlunit.version>4.3.0</htmlunit.version>

<jetty.version>9.4.54.v20240208</jetty.version>

<checkstyle.version>10.16.0</checkstyle.version>
<spotbugs.version>4.8.5</spotbugs.version>
<checkstyle.version>10.17.0</checkstyle.version>
<spotbugs.version>4.8.6</spotbugs.version>
<archunit.version>1.3.0</archunit.version>
<dependencycheck.version>9.2.0</dependencycheck.version>
</properties>
Expand Down Expand Up @@ -198,7 +198,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-checkstyle-plugin</artifactId>
<version>3.3.1</version>
<version>3.4.0</version>
<configuration>
<configLocation>checkstyle.xml</configLocation>
<suppressionsLocation>checkstyle_suppressions.xml</suppressionsLocation>
Expand Down Expand Up @@ -244,7 +244,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.6.3</version>
<version>3.7.0</version>
<configuration>
<quiet>true</quiet>
<detectLinks>true</detectLinks>
Expand All @@ -261,7 +261,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>3.2.5</version>
<version>3.3.0</version>
<configuration>
<includes>
<include>**/*.java</include>
Expand Down Expand Up @@ -318,7 +318,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-enforcer-plugin</artifactId>
<version>3.4.1</version>
<version>3.5.0</version>
<executions>
<execution>
<id>enforce</id>
Expand Down

0 comments on commit ee358f4

Please sign in to comment.