Skip to content

Commit

Permalink
4.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
rbri committed Jun 24, 2024
1 parent 42a9e23 commit 4fe7bf5
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 12 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ The code is being expanded, restructured and improved primarily to meet the requ

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

### Latest release Version 4.2.0 / June 05, 2024
### Latest release Version 4.3.0 / June 24, 2024

### Maven

Expand All @@ -30,7 +30,7 @@ Add to your `pom.xml`:
<dependency>
<groupId>org.htmlunit</groupId>
<artifactId>htmlunit-csp</artifactId>
<version>4.2.0</version>
<version>4.3.0</version>
</dependency>
```

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

```groovy
implementation group: 'org.htmlunit', name: 'htmlunit-csp', version: '4.2.0'
implementation group: 'org.htmlunit', name: 'htmlunit-csp', version: '4.3.0'
```

### A Note on CSP
Expand Down Expand Up @@ -106,7 +106,7 @@ If you use maven please add:
<dependency>
<groupId>org.htmlunit</groupId>
<artifactId>htmlunit-csp</artifactId>
<version>4.3.0-SNAPSHOT</version>
<version>4.4.0-SNAPSHOT</version>
</dependency>

You have to add the sonatype snapshot repository to your pom `repositories` section also:
Expand Down
16 changes: 8 additions & 8 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>org.htmlunit</groupId>
<artifactId>htmlunit-csp</artifactId>
<version>4.2.0</version>
<version>4.3.0</version>
<name>HtmlUnit Content-Security-Policy Parser</name>
<organization>
<name>HtmlUnit</name>
Expand All @@ -21,7 +21,7 @@
<maven.compiler.target>8</maven.compiler.target>

<checkstyle.version>10.17.0</checkstyle.version>
<spotbugs.version>4.8.5</spotbugs.version>
<spotbugs.version>4.8.6</spotbugs.version>
<pmd.version>6.55.0</pmd.version>
<spotless.version>2.38.0</spotless.version>
<dependencycheck.version>9.2.0</dependencycheck.version>
Expand Down Expand Up @@ -55,7 +55,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>3.2.5</version>
<version>3.3.0</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
Expand All @@ -65,7 +65,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-checkstyle-plugin</artifactId>
<version>3.3.1</version>
<version>3.4.0</version>
<configuration>
<configLocation>checkstyle.xml</configLocation>
<suppressionsLocation>checkstyle_suppressions.xml</suppressionsLocation>
Expand All @@ -84,7 +84,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>3.4.1</version>
<version>3.4.2</version>
<configuration>
<archive>
<manifest>
Expand Down Expand Up @@ -177,7 +177,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<version>3.0.1</version>
<version>3.1.0</version>
</plugin>
<plugin>
<groupId>com.github.spotbugs</groupId>
Expand Down Expand Up @@ -315,11 +315,11 @@
</dependencies>
<distributionManagement>
<snapshotRepository>
<id>sonatype-nexus-snapshots</id>
<id>s01-sonatype-nexus-snapshots</id>
<url>https://s01.oss.sonatype.org/content/repositories/snapshots</url>
</snapshotRepository>
<repository>
<id>sonatype-nexus-staging</id>
<id>s01-sonatype-nexus-staging</id>
<url>https://s01.oss.sonatype.org/service/local/staging/deploy/maven2</url>
</repository>
</distributionManagement>
Expand Down

0 comments on commit 4fe7bf5

Please sign in to comment.