Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
32 changes: 0 additions & 32 deletions build-tools/owasp/suppressions.xml
Original file line number Diff line number Diff line change
Expand Up @@ -38,36 +38,4 @@
</suppress>

<!-- Suppressed vulnerabilities. These need monthly review. -->
<suppress until="2025-11-10Z">
<notes><![CDATA[
This vulnerability affects a transitive dependency of the test module but is not relevant
for how it is used in the context of the Java Client Libraries.
]]></notes>
<packageUrl regex="true">^pkg:maven/net\.minidev/json-smart@.*$</packageUrl>
<vulnerabilityName>CVE-2024-57699</vulnerabilityName>
</suppress>
<suppress until="2025-11-10Z">
<notes><![CDATA[
This vulnerability affects a transitive dependency of the test module but is not relevant
for how it is used in the context of the Java Client Libraries.
]]></notes>
<packageUrl regex="true">^pkg:maven/org\.eclipse\.jetty\.http2/http2-common@.*$</packageUrl>
<cve>CVE-2024-6763</cve>
</suppress>
<suppress until="2025-11-10Z">
<notes><![CDATA[
This vulnerability affects a transitive dependency of the test module but is not relevant
for how it is used in the context of the Java Client Libraries.
]]></notes>
<packageUrl regex="true">^pkg:maven/org\.eclipse\.jetty\.http2/http2-common@.*$</packageUrl>
<cve>CVE-2025-1948</cve>
</suppress>
<suppress until="2025-11-10Z">
<notes><![CDATA[
This vulnerability affects a transitive dependency of the test module but is not relevant
for how it is used in the context of the Java Client Libraries.
]]></notes>
<packageUrl regex="true">^pkg:maven/org\.eclipse\.jetty\.http2/http2-common@.*$</packageUrl>
<cve>CVE-2025-5115</cve>
</suppress>
</suppressions>
7 changes: 6 additions & 1 deletion integration/base/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -107,10 +107,15 @@
</dependency>
<dependency>
<groupId>org.wiremock</groupId>
<artifactId>wiremock</artifactId>
<artifactId>wiremock-standalone</artifactId>
<version>${wiremock.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest</artifactId>
<version>${hamcrest.version}</version>
</dependency>

<!-- test dependencies -->
<dependency>
Expand Down
2 changes: 1 addition & 1 deletion performance/base/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@
</dependency>
<dependency>
<groupId>org.wiremock</groupId>
<artifactId>wiremock</artifactId>
<artifactId>wiremock-standalone</artifactId>
<version>${wiremock.version}</version>
<scope>provided</scope>
</dependency>
Expand Down
1 change: 1 addition & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,7 @@
<smallrye.config.version>3.13.2</smallrye.config.version>
<yasson.version>3.0.4</yasson.version>
<wiremock.version>3.13.1</wiremock.version>
<hamcrest.version>3.0</hamcrest.version>

<!-- disable by default (enabled by profile in CI) -->
<dependency-check.skip>true</dependency-check.skip>
Expand Down
2 changes: 1 addition & 1 deletion test/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
</dependency>
<dependency>
<groupId>org.wiremock</groupId>
<artifactId>wiremock</artifactId>
<artifactId>wiremock-standalone</artifactId>
<version>${wiremock.version}</version>
<scope>provided</scope>
</dependency>
Expand Down
Loading