Skip to content

Commit 2ba7c7f

Browse files
committed
4.2.0
1 parent 7d627d8 commit 2ba7c7f

File tree

2 files changed

+13
-12
lines changed

2 files changed

+13
-12
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ The code is being expanded, restructured and improved primarily to meet the requ
2020

2121
[HtmlUnit@mastodon][4] | [HtmlUnit@Twitter][3]
2222

23-
### Latest release Version 4.1.0 / April 28, 2024
23+
### Latest release Version 4.2.0 / May 05, 2024
2424

2525
### Maven
2626

@@ -30,7 +30,7 @@ Add to your `pom.xml`:
3030
<dependency>
3131
<groupId>org.htmlunit</groupId>
3232
<artifactId>htmlunit-csp</artifactId>
33-
<version>4.1.0</version>
33+
<version>4.2.0</version>
3434
</dependency>
3535
```
3636

@@ -39,7 +39,7 @@ Add to your `pom.xml`:
3939
Add to your `build.gradle`:
4040

4141
```groovy
42-
implementation group: 'org.htmlunit', name: 'htmlunit-csp', version: '4.1.0'
42+
implementation group: 'org.htmlunit', name: 'htmlunit-csp', version: '4.2.0'
4343
```
4444

4545
### A Note on CSP
@@ -106,7 +106,7 @@ If you use maven please add:
106106
<dependency>
107107
<groupId>org.htmlunit</groupId>
108108
<artifactId>htmlunit-csp</artifactId>
109-
<version>4.2.0-SNAPSHOT</version>
109+
<version>4.3.0-SNAPSHOT</version>
110110
</dependency>
111111

112112
You have to add the sonatype snapshot repository to your pom `repositories` section also:

pom.xml

Lines changed: 9 additions & 8 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.1.0</version>
7+
<version>4.2.0</version>
88
<name>HtmlUnit Content-Security-Policy Parser</name>
99
<organization>
1010
<name>HtmlUnit</name>
@@ -20,19 +20,19 @@
2020
<maven.compiler.source>8</maven.compiler.source>
2121
<maven.compiler.target>8</maven.compiler.target>
2222

23-
<dependencycheck.version>8.4.0</dependencycheck.version>
24-
<spotbugs.version>4.8.4</spotbugs.version>
23+
<checkstyle.version>10.17.0</checkstyle.version>
24+
<spotbugs.version>4.8.5</spotbugs.version>
2525
<pmd.version>6.55.0</pmd.version>
2626
<spotless.version>2.38.0</spotless.version>
27-
<dependencycheck.version>9.1.0</dependencycheck.version>
27+
<dependencycheck.version>9.2.0</dependencycheck.version>
2828
</properties>
2929

3030
<build>
3131
<plugins>
3232
<plugin>
3333
<groupId>org.apache.maven.plugins</groupId>
3434
<artifactId>maven-enforcer-plugin</artifactId>
35-
<version>3.4.1</version>
35+
<version>3.5.0</version>
3636
<executions>
3737
<execution>
3838
<id>enforce-maven</id>
@@ -77,7 +77,7 @@
7777
<dependency>
7878
<groupId>com.puppycrawl.tools</groupId>
7979
<artifactId>checkstyle</artifactId>
80-
<version>9.3</version>
80+
<version>${checkstyle.version}</version>
8181
</dependency>
8282
</dependencies>
8383
</plugin>
@@ -114,7 +114,7 @@
114114
<plugin>
115115
<groupId>org.apache.maven.plugins</groupId>
116116
<artifactId>maven-javadoc-plugin</artifactId>
117-
<version>3.6.3</version>
117+
<version>3.7.0</version>
118118
<configuration>
119119
<additionalparam>--allow-script-in-comments</additionalparam>
120120
<excludePackageNames>org.htmlunit.cssparser.parser.javacc</excludePackageNames>
@@ -182,7 +182,7 @@
182182
<plugin>
183183
<groupId>com.github.spotbugs</groupId>
184184
<artifactId>spotbugs-maven-plugin</artifactId>
185-
<version>4.8.4.0</version>
185+
<version>4.8.5.0</version>
186186
<dependencies>
187187
<dependency>
188188
<groupId>com.github.spotbugs</groupId>
@@ -222,6 +222,7 @@
222222
<version>${dependencycheck.version}</version>
223223
<configuration>
224224
<failBuildOnCVSS>0</failBuildOnCVSS>
225+
<assemblyAnalyzerEnabled>false</assemblyAnalyzerEnabled>
225226
</configuration>
226227
<executions>
227228
<execution>

0 commit comments

Comments
 (0)