Skip to content

Commit a01d273

Browse files
committed
4.19.0
1 parent a841cac commit a01d273

File tree

2 files changed

+13
-10
lines changed

2 files changed

+13
-10
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ The library was created by forking the [salvation](https://github.com/shapesecur
1212
For HtmlUnit, the code has been adapted to the code style rules used, and support for editing policies has been removed.
1313
The code is being expanded, restructured and improved primarily to meet the requirements of this project.
1414

15-
[![Maven Central Version](https://img.shields.io/maven-central/v/org.htmlunit/htmlunit-csp))](https://central.sonatype.com/artifact/org.htmlunit/htmlunit-csp)
15+
[![Maven Central Version](https://img.shields.io/maven-central/v/org.htmlunit/htmlunit-csp)](https://central.sonatype.com/artifact/org.htmlunit/htmlunit-csp)
1616

1717
:heart: [Sponsor](https://github.com/sponsors/rbri)
1818

@@ -22,7 +22,7 @@ The code is being expanded, restructured and improved primarily to meet the requ
2222

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

25-
### Latest release Version 4.18.0 / October 30, 2025
25+
### Latest release Version 4.19.0 / November 23, 2025
2626

2727
### Maven
2828

@@ -32,7 +32,7 @@ Add to your `pom.xml`:
3232
<dependency>
3333
<groupId>org.htmlunit</groupId>
3434
<artifactId>htmlunit-csp</artifactId>
35-
<version>4.18.0</version>
35+
<version>4.19.0</version>
3636
</dependency>
3737
```
3838

@@ -41,7 +41,7 @@ Add to your `pom.xml`:
4141
Add to your `build.gradle`:
4242

4343
```groovy
44-
implementation group: 'org.htmlunit', name: 'htmlunit-csp', version: '4.18.0'
44+
implementation group: 'org.htmlunit', name: 'htmlunit-csp', version: '4.19.0'
4545
```
4646

4747
### A Note on CSP
@@ -108,7 +108,7 @@ If you use maven please add:
108108
<dependency>
109109
<groupId>org.htmlunit</groupId>
110110
<artifactId>htmlunit-csp</artifactId>
111-
<version>4.19.0-SNAPSHOT</version>
111+
<version>4.20.0-SNAPSHOT</version>
112112
</dependency>
113113

114114
You have to add the sonatype-central snapshot repository to your pom `repositories` section also:

pom.xml

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<modelVersion>4.0.0</modelVersion>
55
<groupId>org.htmlunit</groupId>
66
<artifactId>htmlunit-csp</artifactId>
7-
<version>4.18.0</version>
7+
<version>4.19.0</version>
88
<name>HtmlUnit Content-Security-Policy Parser</name>
99
<organization>
1010
<name>HtmlUnit</name>
@@ -24,9 +24,9 @@
2424
<junit.version>5.13.4</junit.version>
2525

2626
<!-- quality -->
27-
<checkstyle.version>12.1.1</checkstyle.version>
27+
<checkstyle.version>12.1.2</checkstyle.version>
2828
<spotbugs.version>4.9.8</spotbugs.version>
29-
<pmd.version>7.17.0</pmd.version>
29+
<pmd.version>7.18.0</pmd.version>
3030
<spotless.version>2.38.0</spotless.version>
3131
<dependencycheck.version>10.0.4</dependencycheck.version>
3232

@@ -39,7 +39,8 @@
3939
<enforcer-plugin.version>3.6.2</enforcer-plugin.version>
4040
<changes-plugin.version>2.12.1</changes-plugin.version>
4141
<compiler-plugin.version>3.14.1</compiler-plugin.version>
42-
<jar-plugin.version>3.4.2</jar-plugin.version>
42+
<jar-plugin.version>3.5.0</jar-plugin.version>
43+
<release-plugin.version>3.2.0</release-plugin.version>
4344
<javadoc-plugin.version>3.12.0</javadoc-plugin.version>
4445
<surefire-plugin.version>3.5.4</surefire-plugin.version>
4546
</properties>
@@ -197,7 +198,7 @@
197198
<plugin>
198199
<groupId>org.apache.maven.plugins</groupId>
199200
<artifactId>maven-release-plugin</artifactId>
200-
<version>3.1.1</version>
201+
<version>${release-plugin.version}</version>
201202
</plugin>
202203
<plugin>
203204
<groupId>com.github.spotbugs</groupId>
@@ -245,6 +246,7 @@
245246
<publishingServerId>central</publishingServerId>
246247
</configuration>
247248
</plugin>
249+
<!--
248250
<plugin>
249251
<groupId>org.owasp</groupId>
250252
<artifactId>dependency-check-maven</artifactId>
@@ -262,6 +264,7 @@
262264
</execution>
263265
</executions>
264266
</plugin>
267+
-->
265268
</plugins>
266269
</build>
267270
<reporting>

0 commit comments

Comments
 (0)