Skip to content

Commit 495a39f

Browse files
committed
4.14.0
1 parent c689b24 commit 495a39f

File tree

2 files changed

+24
-35
lines changed

2 files changed

+24
-35
lines changed

README.md

Lines changed: 19 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -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.13.0 / June 03, 2025
25+
### Latest release Version 4.14.0 / July 30, 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.13.0</version>
35+
<version>4.14.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.13.0'
44+
implementation group: 'org.htmlunit', name: 'htmlunit-csp', version: '4.14.0'
4545
```
4646

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

114-
You have to add the sonatype snapshot repository to your pom `repositories` section also:
115-
116-
<repository>
117-
<id>OSS Sonatype snapshots</id>
118-
<url>https://s01.oss.sonatype.org/content/repositories/snapshots/</url>
119-
<snapshots>
120-
<enabled>true</enabled>
121-
<updatePolicy>always</updatePolicy>
122-
</snapshots>
123-
<releases>
124-
<enabled>false</enabled>
125-
</releases>
126-
</repository>
114+
You have to add the sonatype-central snapshot repository to your pom `repositories` section also:
115+
116+
<repositories>
117+
<repository>
118+
<name>Central Portal Snapshots</name>
119+
<id>central-portal-snapshots</id>
120+
<url>https://central.sonatype.com/repository/maven-snapshots/</url>
121+
<releases>
122+
<enabled>false</enabled>
123+
</releases>
124+
<snapshots>
125+
<enabled>true</enabled>
126+
</snapshots>
127+
</repository>
128+
</repositories>
127129

128130

129131
## Start HtmlUnit - CSP Development

pom.xml

Lines changed: 5 additions & 18 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.14.0-SNAPSHOT</version>
7+
<version>4.14.0</version>
88
<name>HtmlUnit Content-Security-Policy Parser</name>
99
<organization>
1010
<name>HtmlUnit</name>
@@ -32,11 +32,13 @@
3232

3333
<!-- plugins -->
3434
<central-publishing-plugin.version>0.8.0</central-publishing-plugin.version>
35+
<checkstyle-plugin.version>3.6.0</checkstyle-plugin.version>
3536
<pmd-plugin.version>3.27.0</pmd-plugin.version>
3637
<spotbugs-plugin.version>4.9.3.2</spotbugs-plugin.version>
3738
<gpg-plugin.version>3.2.8</gpg-plugin.version>
3839
<enforcer-plugin.version>3.6.1</enforcer-plugin.version>
3940
<changes-plugin.version>2.12.1</changes-plugin.version>
41+
<jar-plugin.version>3.4.2</jar-plugin.version>
4042
</properties>
4143

4244
<build>
@@ -77,7 +79,7 @@
7779
<plugin>
7880
<groupId>org.apache.maven.plugins</groupId>
7981
<artifactId>maven-checkstyle-plugin</artifactId>
80-
<version>3.6.0</version>
82+
<version>${checkstyle-plugin.version}</version>
8183
<configuration>
8284
<configLocation>checkstyle.xml</configLocation>
8385
<suppressionsLocation>checkstyle_suppressions.xml</suppressionsLocation>
@@ -96,7 +98,7 @@
9698
<plugin>
9799
<groupId>org.apache.maven.plugins</groupId>
98100
<artifactId>maven-jar-plugin</artifactId>
99-
<version>3.4.2</version>
101+
<version>${jar-plugin.version}</version>
100102
<configuration>
101103
<archive>
102104
<manifest>
@@ -339,19 +341,4 @@
339341
</dependency>
340342
</dependencies>
341343

342-
<!-- for snapshots of our dependencies -->
343-
<repositories>
344-
<repository>
345-
<name>Central Portal Snapshots</name>
346-
<id>central-portal-snapshots</id>
347-
<url>https://central.sonatype.com/repository/maven-snapshots/</url>
348-
<releases>
349-
<enabled>false</enabled>
350-
</releases>
351-
<snapshots>
352-
<enabled>true</enabled>
353-
</snapshots>
354-
</repository>
355-
</repositories>
356-
357344
</project>

0 commit comments

Comments
 (0)