Skip to content

Commit

Permalink
version 4.16.0
Browse files Browse the repository at this point in the history
  • Loading branch information
rbri committed Dec 7, 2023
1 parent 22097e4 commit 97d5919
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 7 deletions.
11 changes: 6 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ 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.15.0
is for Selenium 4.15.0.
Starting with Selenium 4.5 we use the same version numbers for the driver - e.g. HtmlUnit-Driver 4.16.0
is for Selenium 4.16.0.

Because there are so many tools working on top HtmlUnitDriver, we now maintain two version (artifact id's).

Expand All @@ -30,7 +30,8 @@ For an overview please check the following tables:

| selenium | htmlunit-driver | htmlunit | artifactId | JDK |
|----------|-----------------|-----------------|------------------|------|
| 4.15.1 | **4.15.1** | 3.9.0 | htmlunit3-driver | 11 |
| 4.16.0 | **4.16.0** | 3.9.0 | htmlunit3-driver | 11 |
| 4.15.1 | 4.15.1 | 3.9.0 | htmlunit3-driver | 11 |
| 4.15.0 | 4.15.0 | 3.8.0 | htmlunit3-driver | 11 |
| 4.14.1 | 4.14.1 | 3.7.0 | htmlunit3-driver | 11 |
| 4.13.0 | 4.13.0 | 3.6.0 | htmlunit3-driver | 1.8 |
Expand Down Expand Up @@ -94,14 +95,14 @@ Add to your `pom.xml`:
<dependency>
<groupId>org.seleniumhq.selenium</groupId>
<artifactId>htmlunit3-driver</artifactId>
<version>4.15.1</version>
<version>4.16.0</version>
</dependency>
```

Add to your `build.gradle`:

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


Expand Down
4 changes: 2 additions & 2 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.15.1</version>
<version>4.16.0</version>

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

<selenium.version>4.15.0</selenium.version>
<selenium.version>4.16.0</selenium.version>
<htmlunit.version>3.9.0</htmlunit.version>

<jetty.version>9.4.53.v20231009</jetty.version>
Expand Down

0 comments on commit 97d5919

Please sign in to comment.