Skip to content

Commit

Permalink
4.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
rbri committed Oct 18, 2024
1 parent c385603 commit 709a8d4
Show file tree
Hide file tree
Showing 3 changed files with 40 additions and 8 deletions.
17 changes: 12 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,11 @@ using different versions of Jetty, this repo provides a shaded version of the je

### Project News

**[Developer Blog][5]**

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

### Latest release Version 4.4.0 / July 28, 2024
### Latest release Version 4.5.0 / October 20, 2024

### Maven

Expand All @@ -23,7 +25,7 @@ Add to your `pom.xml`:
<dependency>
<groupId>org.htmlunit</groupId>
<artifactId>htmlunit-websocket-client</artifactId>
<version>4.4.0</version>
<version>4.5.0</version>
</dependency>
```

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

```groovy
implementation group: 'org.htmlunit', name: 'htmlunit-websocket-client', version: '4.4.0'
implementation group: 'org.htmlunit', name: 'htmlunit-websocket-client', version: '4.5.0'
```

### Last CI build
Expand All @@ -47,7 +49,7 @@ If you use maven please add:
<dependency>
<groupId>org.htmlunit</groupId>
<artifactId>htmlunit-websocket-client</artifactId>
<version>4.5.0-SNAPSHOT</version>
<version>4.6.0-SNAPSHOT</version>
</dependency>

You have to add the sonatype snapshot repository to your pom `repositories` section also:
Expand Down Expand Up @@ -130,8 +132,12 @@ This part is intended for committer who are packaging a release.
* append
* htmlunit-websocket-client-4.x.x.jar
* htmlunit-websocket-client-4.x.x.jar.asc
* htmlunit-websocket-client-4.x.x.pom
* htmlunit-websocket-client-4.x.x.pom.asc
* htmlunit-websocket-client-4.x.x-javadoc.jar
* htmlunit-websocket-client-4.x.x-javadoc.jar.asc
* htmlunit-websocket-client-4.x.x-sources.jar
* htmlunit-websocket-client-4.x.x-sources.jar.asc
* and publish the release

* Update the version number in pom.xml to start next snapshot development
Expand All @@ -153,4 +159,5 @@ Many thanks to all of you contributing to HtmlUnit/CSSParser/Rhino in the past.

[2]: https://jenkins.wetator.org/job/HtmlUnit%20-%20Websocket%20Client/ "HtmlUnit - Websocket Client CI"
[3]: https://twitter.com/HtmlUnit "https://twitter.com/HtmlUnit"
[4]: https://fosstodon.org/@HtmlUnit
[4]: https://fosstodon.org/@HtmlUnit
[5]: https://htmlunit.github.io/htmlunit-blog/
6 changes: 6 additions & 0 deletions owasp-suppressions.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<suppressions xmlns="https://jeremylong.github.io/DependencyCheck/dependency-suppression.1.3.xsd">
<suppress>
<cve>CVE-2024-6763</cve>
</suppress>
</suppressions>
25 changes: 22 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

<groupId>org.htmlunit</groupId>
<artifactId>htmlunit-websocket-client</artifactId>
<version>4.5.0-SNAPSHOT</version>
<version>4.5.0</version>

<name>HtmlUnit WebSocket Client</name>
<organization>
Expand All @@ -28,6 +28,8 @@
<maven.compiler.target>8</maven.compiler.target>

<jetty.version>9.4.56.v20240826</jetty.version>

<dependencycheck.version>10.0.4</dependencycheck.version>
</properties>

<dependencies>
Expand All @@ -40,6 +42,23 @@

<build>
<plugins>
<plugin>
<groupId>org.owasp</groupId>
<artifactId>dependency-check-maven</artifactId>
<version>${dependencycheck.version}</version>
<configuration>
<suppressionFiles>owasp-suppressions.xml</suppressionFiles>
<failBuildOnCVSS>0</failBuildOnCVSS>
<assemblyAnalyzerEnabled>false</assemblyAnalyzerEnabled>
</configuration>
<executions>
<execution>
<goals>
<goal>check</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-enforcer-plugin</artifactId>
Expand Down Expand Up @@ -137,7 +156,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.8.0</version>
<version>3.10.1</version>
<configuration>
<quiet>true</quiet>
<!-- see https://stackoverflow.com/questions/69320220/maven-javadoc-listed-classes-twice -->
Expand All @@ -161,7 +180,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>3.2.4</version>
<version>3.2.7</version>
<executions>
<execution>
<phase>verify</phase>
Expand Down

0 comments on commit 709a8d4

Please sign in to comment.