Skip to content

Commit

Permalink
version 4.17.0
Browse files Browse the repository at this point in the history
  • Loading branch information
rbri committed Jan 23, 2024
1 parent 23e0ab4 commit fbe2e25
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,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.16.1
is for Selenium 4.16.1.
Starting with Selenium 4.5 we use the same version numbers for the driver - e.g. HtmlUnit-Driver 4.17.0
is for Selenium 4.17.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.16.1 | **4.16.1** | 3.10.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 |
| 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 |
Expand Down Expand Up @@ -96,14 +97,14 @@ Add to your `pom.xml`:
<dependency>
<groupId>org.seleniumhq.selenium</groupId>
<artifactId>htmlunit3-driver</artifactId>
<version>4.16.1</version>
<version>4.17.0</version>
</dependency>
```

Add to your `build.gradle`:

```groovy
implementation group: 'org.seleniumhq.selenium', name: 'htmlunit3-driver', version: '4.16.1'
implementation group: 'org.seleniumhq.selenium', name: 'htmlunit3-driver', version: '4.17.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.16.1</version>
<version>4.17.0-SNAPSHOT</version>

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

<selenium.version>4.16.1</selenium.version>
<selenium.version>4.17.0</selenium.version>
<htmlunit.version>3.10.0</htmlunit.version>

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

<checkstyle.version>9.3</checkstyle.version>
<spotbugs.version>4.8.1</spotbugs.version>
<spotbugs.version>4.8.3</spotbugs.version>
<archunit.version>1.2.1</archunit.version>
<dependencycheck.version>9.0.8</dependencycheck.version>
<dependencycheck.version>9.0.9</dependencycheck.version>
</properties>

<licenses>
Expand Down Expand Up @@ -184,7 +184,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.11.0</version>
<version>3.12.1</version>
<configuration>
<release>11</release>
<showDeprecation>true</showDeprecation>
Expand Down Expand Up @@ -212,7 +212,7 @@
<plugin>
<groupId>com.github.spotbugs</groupId>
<artifactId>spotbugs-maven-plugin</artifactId>
<version>4.8.2.0</version>
<version>4.8.3.0</version>
<dependencies>
<dependency>
<groupId>com.github.spotbugs</groupId>
Expand Down Expand Up @@ -258,7 +258,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>3.2.2</version>
<version>3.2.5</version>
<configuration>
<includes>
<include>**/*.java</include>
Expand Down

0 comments on commit fbe2e25

Please sign in to comment.