Skip to content

Commit 155e060

Browse files
committed
4.33.0
1 parent f5e4b79 commit 155e060

File tree

3 files changed

+20
-42
lines changed

3 files changed

+20
-42
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# ![HtmlUnitDriver Logo](https://github.com/SeleniumHQ/htmlunit-driver/blob/master/htmlunit_webdriver.png)
22

3-
Version 4.32.0 / May 17, 2025
3+
Version 4.33.0 / June 22, 2025
44

55
**HtmlUnitDriver** is a WebDriver compatible driver for the [HtmlUnit](https://www.htmlunit.org) headless browser.
66

@@ -37,7 +37,7 @@ Add to your `pom.xml`:
3737
<dependency>
3838
<groupId>org.seleniumhq.selenium</groupId>
3939
<artifactId>htmlunit3-driver</artifactId>
40-
<version>4.32.0</version>
40+
<version>4.33.0</version>
4141
</dependency>
4242
```
4343

@@ -46,7 +46,7 @@ Add to your `pom.xml`:
4646
Add to your `build.gradle`:
4747

4848
```groovy
49-
implementation group: 'org.seleniumhq.selenium', name: 'htmlunit3-driver', version: '4.32.0'
49+
implementation group: 'org.seleniumhq.selenium', name: 'htmlunit3-driver', version: '4.33.0'
5050
```
5151

5252

docs/compatibility.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,8 @@ is for Selenium 4.29.0.
88

99
| selenium | htmlunit-driver | htmlunit | artifactId | JDK |
1010
|----------|-----------------|----------------|------------------|------|
11-
| 4.32.0 | **4.32.0** | **4.12.0** | htmlunit3-driver | 11 |
11+
| 4.33.0 | **4.33.0** | **4.13.0** | htmlunit3-driver | 11 |
12+
| 4.32.0 | 4.32.0 | 4.12.0 | htmlunit3-driver | 11 |
1213
| 4.30.0 | 4.30.0 | 4.11.1 | htmlunit3-driver | 11 |
1314
| 4.29.0 | 4.29.0 | 4.10.0 | htmlunit3-driver | 11 |
1415
| 4.28.0 | 4.28.0 | 4.9.0 | htmlunit3-driver | 11 |

pom.xml

Lines changed: 15 additions & 38 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.33.0-SNAPSHOT</version>
8+
<version>4.33.0</version>
99

1010
<name>${project.artifactId}</name>
1111
<description>WebDriver compatible driver for HtmlUnit headless browser</description>
@@ -20,11 +20,13 @@
2020

2121
<selenium.version>4.33.0</selenium.version>
2222
<selenium.devtools.artifactId>selenium-devtools-v136</selenium.devtools.artifactId>
23-
<htmlunit.version>4.13.0-SNAPSHOT</htmlunit.version>
23+
<htmlunit.version>4.13.0</htmlunit.version>
2424

2525
<jetty.version>9.4.57.v20241219</jetty.version>
2626

27-
<checkstyle.version>10.23.1</checkstyle.version>
27+
<central-publishing.version>0.8.0</central-publishing.version>
28+
29+
<checkstyle.version>10.25.1</checkstyle.version>
2830
<spotbugs.version>4.9.3</spotbugs.version>
2931
<archunit.version>1.4.1</archunit.version>
3032
<dependencycheck.version>12.1.1</dependencycheck.version>
@@ -58,6 +60,7 @@
5860
<name>Alexei Barantsev</name>
5961
</developer>
6062
</developers>
63+
6164
<contributors>
6265
<contributor>
6366
<name>Martin Barto&#x160;</name>
@@ -288,6 +291,15 @@
288291
</execution>
289292
</executions>
290293
</plugin>
294+
<plugin>
295+
<groupId>org.sonatype.central</groupId>
296+
<artifactId>central-publishing-maven-plugin</artifactId>
297+
<version>${central-publishing.version}</version>
298+
<extensions>true</extensions>
299+
<configuration>
300+
<publishingServerId>central</publishingServerId>
301+
</configuration>
302+
</plugin>
291303
<!--
292304
<plugin>
293305
<groupId>org.owasp</groupId>
@@ -354,39 +366,4 @@
354366
</plugins>
355367
</build>
356368

357-
<distributionManagement>
358-
<snapshotRepository>
359-
<id>sonatype-nexus-snapshots</id>
360-
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
361-
</snapshotRepository>
362-
<repository>
363-
<id>sonatype-nexus-staging</id>
364-
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2</url>
365-
</repository>
366-
</distributionManagement>
367-
368-
<repositories>
369-
<repository>
370-
<snapshots>
371-
<enabled>true</enabled>
372-
<updatePolicy>always</updatePolicy>
373-
</snapshots>
374-
<releases>
375-
<enabled>false</enabled>
376-
</releases>
377-
<id>OSS Sonatype snapshots</id>
378-
<url>https://oss.sonatype.org/content/repositories/snapshots/</url>
379-
</repository>
380-
<repository>
381-
<snapshots>
382-
<enabled>true</enabled>
383-
<updatePolicy>always</updatePolicy>
384-
</snapshots>
385-
<releases>
386-
<enabled>false</enabled>
387-
</releases>
388-
<id>S01 OSS Sonatype snapshots</id>
389-
<url>https://s01.oss.sonatype.org/content/repositories/snapshots/</url>
390-
</repository>
391-
</repositories>
392369
</project>

0 commit comments

Comments
 (0)