Skip to content

Commit cfbdd6a

Browse files
committed
4.18.0
1 parent b649360 commit cfbdd6a

2 files changed

Lines changed: 31 additions & 11 deletions

File tree

README.md

Lines changed: 4 additions & 4 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.17.0 / October 05, 2025
28+
### Latest release Version 4.18.0 / October 30, 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.17.0</version>
38+
<version>4.18.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.17.0'
47+
implementation group: 'org.htmlunit', name: 'htmlunit-jsoup', version: '4.18.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.18.0-SNAPSHOT</version>
62+
<version>4.19.0-SNAPSHOT</version>
6363
</dependency>
6464

6565
You have to add the Central Portal Snapshots repository to your pom `repositories` section also:

pom.xml

Lines changed: 27 additions & 7 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.17.0</version>
8+
<version>4.18.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.2</jsoup.version>
30-
<htmlunit.version>4.17.0</htmlunit.version>
30+
<htmlunit.version>4.18.0</htmlunit.version>
3131

3232
<!-- examples dependencies -->
3333
<flexmark.version>0.64.8</flexmark.version>
@@ -36,20 +36,21 @@
3636
<junit.version>5.14.0</junit.version>
3737
<junit-launcher.version>1.14.0</junit-launcher.version>
3838

39-
<checkstyle.version>11.1.0</checkstyle.version>
40-
<spotbugs.version>4.9.6</spotbugs.version>
41-
<pmd.version>7.17.0</pmd.version>
39+
<checkstyle.version>12.1.1</checkstyle.version>
40+
<spotbugs.version>4.9.8</spotbugs.version>
41+
<pmd.version>7.18.0</pmd.version>
4242
<dependencycheck.version>10.0.4</dependencycheck.version>
4343

4444
<!-- plugins -->
4545
<central-publishing.version>0.9.0</central-publishing.version>
46-
<spotbugs-plugin.version>4.9.6.0</spotbugs-plugin.version>
46+
<spotbugs-plugin.version>4.9.8.1</spotbugs-plugin.version>
4747
<enforcer-plugin.version>3.6.2</enforcer-plugin.version>
4848
<gpg-plugin.version>3.2.8</gpg-plugin.version>
49-
<pmd-plugin.version>3.27.0</pmd-plugin.version>
49+
<pmd-plugin.version>3.28.0</pmd-plugin.version>
5050
<compiler-plugin.version>3.14.1</compiler-plugin.version>
5151
<javadoc-plugin.version>3.12.0</javadoc-plugin.version>
5252
<surefire-plugin.version>3.5.4</surefire-plugin.version>
53+
<cyclonedx-plugin.version>2.9.1</cyclonedx-plugin.version>
5354
</properties>
5455

5556
<dependencies>
@@ -310,6 +311,25 @@
310311
</execution>
311312
</executions>
312313
</plugin>
314+
<plugin>
315+
<groupId>org.cyclonedx</groupId>
316+
<artifactId>cyclonedx-maven-plugin</artifactId>
317+
<version>${cyclonedx-plugin.version}</version>
318+
<executions>
319+
<execution>
320+
<phase>package</phase>
321+
<goals>
322+
<goal>makeAggregateBom</goal>
323+
</goals>
324+
</execution>
325+
</executions>
326+
<configuration>
327+
<projectType>library</projectType>
328+
<outputFormat>json</outputFormat>
329+
<!-- strange but it helps -->
330+
<skipNotDeployed>false</skipNotDeployed>
331+
</configuration>
332+
</plugin>
313333
</plugins>
314334
</build>
315335

0 commit comments

Comments
 (0)