Skip to content

Commit

Permalink
version 4.20.0
Browse files Browse the repository at this point in the history
  • Loading branch information
rbri committed Apr 25, 2024
1 parent 93229d7 commit 08b2f4b
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 12 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.19.1
is for Selenium 4.19.1.
Starting with Selenium 4.5 we use the same version numbers for the driver - e.g. HtmlUnit-Driver 4.20.0
is for Selenium 4.20.0.

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

***htmlunit3-driver***

| selenium | htmlunit-driver | htmlunit | artifactId | JDK |
|----------|-----------------|-----------------|------------------|------|
| 4.19.1 | **4.19.1** | **4.0.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 |
| 4.17.0 | 4.17.0 | 3.10.0 | htmlunit3-driver | 11 |
| 4.16.1 | 4.16.1 | 3.10.0 | htmlunit3-driver | 11 |
Expand Down Expand Up @@ -93,14 +94,14 @@ Add to your `pom.xml`:
<dependency>
<groupId>org.seleniumhq.selenium</groupId>
<artifactId>htmlunit3-driver</artifactId>
<version>4.19.1</version>
<version>4.20.0</version>
</dependency>
```

Add to your `build.gradle`:

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


Expand Down
14 changes: 7 additions & 7 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.19.1</version>
<version>4.20.0</version>

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

<selenium.version>4.19.1</selenium.version>
<selenium.version>4.20.0</selenium.version>
<htmlunit.version>4.0.0</htmlunit.version>

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

<checkstyle.version>10.15.0</checkstyle.version>
<spotbugs.version>4.8.3</spotbugs.version>
<archunit.version>1.2.1</archunit.version>
<spotbugs.version>4.8.4</spotbugs.version>
<archunit.version>1.3.0</archunit.version>
<dependencycheck.version>9.1.0</dependencycheck.version>
</properties>

Expand Down Expand Up @@ -212,7 +212,7 @@
<plugin>
<groupId>com.github.spotbugs</groupId>
<artifactId>spotbugs-maven-plugin</artifactId>
<version>4.8.3.1</version>
<version>4.8.4.0</version>
<dependencies>
<dependency>
<groupId>com.github.spotbugs</groupId>
Expand All @@ -227,7 +227,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>3.3.0</version>
<version>3.3.1</version>
<executions>
<execution>
<id>attach-sources</id>
Expand Down Expand Up @@ -268,7 +268,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>3.2.2</version>
<version>3.2.4</version>
<executions>
<execution>
<phase>verify</phase>
Expand Down

0 comments on commit 08b2f4b

Please sign in to comment.