Skip to content

Commit a1f12c1

Browse files
committed
4.15.0
1 parent 6d82cff commit a1f12c1

File tree

2 files changed

+18
-19
lines changed

2 files changed

+18
-19
lines changed

README.md

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ The FlexmarkConverterSample class demonstrates advanced HTML-to-Markdown convers
2525

2626
[HtmlUnit@mastodon](https://fosstodon.org/@HtmlUnit) | [HtmlUnit@bsky](https://bsky.app/profile/htmlunit.bsky.social) | [HtmlUnit@Twitter](https://twitter.com/HtmlUnit)
2727

28-
### Latest release Version 4.14.0 / July 30, 2025
28+
### Latest release Version 4.15.0 / August 17, 2025
2929

3030
### Maven
3131

@@ -35,7 +35,7 @@ Add to your `pom.xml`:
3535
<dependency>
3636
<groupId>org.htmlunit</groupId>
3737
<artifactId>htmlunit-jsoup</artifactId>
38-
<version>4.14.0</version>
38+
<version>4.15.0</version>
3939
</dependency>
4040
```
4141

@@ -44,7 +44,7 @@ Add to your `pom.xml`:
4444
Add to your `build.gradle`:
4545

4646
```groovy
47-
implementation group: 'org.htmlunit', name: 'htmlunit-jsoup', version: '4.14.0'
47+
implementation group: 'org.htmlunit', name: 'htmlunit-jsoup', version: '4.15.0'
4848
```
4949

5050
### Last CI build
@@ -59,7 +59,7 @@ If you use maven please add:
5959
<dependency>
6060
<groupId>org.htmlunit</groupId>
6161
<artifactId>htmlunit-jsoup</artifactId>
62-
<version>4.15.0-SNAPSHOT</version>
62+
<version>4.16.0-SNAPSHOT</version>
6363
</dependency>
6464

6565
You have to add the Central Portal Snapshots repository to your pom `repositories` section also:
@@ -133,9 +133,8 @@ This part is intended for committer who are packaging a release.
133133
mvn -up clean deploy
134134
```
135135

136-
* Go to [Sonatype staging repositories](https://s01.oss.sonatype.org/index.html#stagingRepositories) and process the deploy
137-
- select the repository and close it - wait until the close is processed
138-
- release the package and wait until it is processed
136+
* Go to [Maven Central Portal](https://central.sonatype.com/) and process the deploy
137+
- publish the package and wait until it is processed
139138

140139
* Create the version on Github
141140
* login to Github and open project https://github.com/HtmlUnit/htmlunit-jsoup

pom.xml

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
<groupId>org.htmlunit</groupId>
77
<artifactId>htmlunit-jsoup</artifactId>
8-
<version>4.14.0</version>
8+
<version>4.15.0</version>
99

1010
<name>HtmlUnit jsoup support</name>
1111
<organization>
@@ -27,7 +27,7 @@
2727
<maven.compiler.target>8</maven.compiler.target>
2828

2929
<jsoup.version>1.21.1</jsoup.version>
30-
<htmlunit.version>4.14.0</htmlunit.version>
30+
<htmlunit.version>4.15.0</htmlunit.version>
3131

3232
<!-- examples dependencies -->
3333
<flexmark.version>0.64.8</flexmark.version>
@@ -37,17 +37,17 @@
3737
<junit-launcher.version>1.13.1</junit-launcher.version>
3838

3939
<checkstyle.version>10.26.1</checkstyle.version>
40-
<spotbugs.version>4.9.3</spotbugs.version>
40+
<spotbugs.version>4.9.4</spotbugs.version>
4141
<pmd.version>7.16.0</pmd.version>
4242
<dependencycheck.version>10.0.4</dependencycheck.version>
4343

4444
<!-- plugins -->
4545
<central-publishing.version>0.8.0</central-publishing.version>
46-
<javadoc-plugin.version>3.11.2</javadoc-plugin.version>
47-
<maven-spotbugs-plugin.version>4.9.3.2</maven-spotbugs-plugin.version>
48-
<maven-enforcer-plugin.version>3.6.1</maven-enforcer-plugin.version>
49-
<maven-gpg-plugin.version>3.2.8</maven-gpg-plugin.version>
50-
<maven-pmd-plugin.version>3.27.0</maven-pmd-plugin.version>
46+
<spotbugs-plugin.version>4.9.3.2</spotbugs-plugin.version>
47+
<enforcer-plugin.version>3.6.1</enforcer-plugin.version>
48+
<gpg-plugin.version>3.2.8</gpg-plugin.version>
49+
<pmd-plugin.version>3.27.0</pmd-plugin.version>
50+
<javadoc-plugin.version>3.11.3</javadoc-plugin.version>
5151
</properties>
5252

5353
<dependencies>
@@ -96,7 +96,7 @@
9696
<plugin>
9797
<groupId>org.apache.maven.plugins</groupId>
9898
<artifactId>maven-enforcer-plugin</artifactId>
99-
<version>${maven-enforcer-plugin.version}</version>
99+
<version>${enforcer-plugin.version}</version>
100100
<executions>
101101
<execution>
102102
<id>enforce-maven</id>
@@ -195,7 +195,7 @@
195195
<plugin>
196196
<groupId>org.apache.maven.plugins</groupId>
197197
<artifactId>maven-gpg-plugin</artifactId>
198-
<version>${maven-gpg-plugin.version}</version>
198+
<version>${gpg-plugin.version}</version>
199199
<executions>
200200
<execution>
201201
<phase>verify</phase>
@@ -256,7 +256,7 @@
256256
<plugin>
257257
<groupId>com.github.spotbugs</groupId>
258258
<artifactId>spotbugs-maven-plugin</artifactId>
259-
<version>${maven-spotbugs-plugin.version}</version>
259+
<version>${spotbugs-plugin.version}</version>
260260
<dependencies>
261261
<dependency>
262262
<groupId>com.github.spotbugs</groupId>
@@ -271,7 +271,7 @@
271271
<plugin>
272272
<groupId>org.apache.maven.plugins</groupId>
273273
<artifactId>maven-pmd-plugin</artifactId>
274-
<version>${maven-pmd-plugin.version}</version>
274+
<version>${pmd-plugin.version}</version>
275275
<dependencies>
276276
<dependency>
277277
<groupId>net.sourceforge.pmd</groupId>

0 commit comments

Comments
 (0)