Skip to content

Commit ee315b6

Browse files
committed
Remove OWASP suppression configuration
1 parent 34184e3 commit ee315b6

File tree

5 files changed

+9
-35
lines changed

5 files changed

+9
-35
lines changed

build-tools/owasp/suppressions.xml

Lines changed: 0 additions & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -38,36 +38,4 @@
3838
</suppress>
3939

4040
<!-- Suppressed vulnerabilities. These need monthly review. -->
41-
<suppress until="2025-11-10Z">
42-
<notes><![CDATA[
43-
This vulnerability affects a transitive dependency of the test module but is not relevant
44-
for how it is used in the context of the Java Client Libraries.
45-
]]></notes>
46-
<packageUrl regex="true">^pkg:maven/net\.minidev/json-smart@.*$</packageUrl>
47-
<vulnerabilityName>CVE-2024-57699</vulnerabilityName>
48-
</suppress>
49-
<suppress until="2025-11-10Z">
50-
<notes><![CDATA[
51-
This vulnerability affects a transitive dependency of the test module but is not relevant
52-
for how it is used in the context of the Java Client Libraries.
53-
]]></notes>
54-
<packageUrl regex="true">^pkg:maven/org\.eclipse\.jetty\.http2/http2-common@.*$</packageUrl>
55-
<cve>CVE-2024-6763</cve>
56-
</suppress>
57-
<suppress until="2025-11-10Z">
58-
<notes><![CDATA[
59-
This vulnerability affects a transitive dependency of the test module but is not relevant
60-
for how it is used in the context of the Java Client Libraries.
61-
]]></notes>
62-
<packageUrl regex="true">^pkg:maven/org\.eclipse\.jetty\.http2/http2-common@.*$</packageUrl>
63-
<cve>CVE-2025-1948</cve>
64-
</suppress>
65-
<suppress until="2025-11-10Z">
66-
<notes><![CDATA[
67-
This vulnerability affects a transitive dependency of the test module but is not relevant
68-
for how it is used in the context of the Java Client Libraries.
69-
]]></notes>
70-
<packageUrl regex="true">^pkg:maven/org\.eclipse\.jetty\.http2/http2-common@.*$</packageUrl>
71-
<cve>CVE-2025-5115</cve>
72-
</suppress>
7341
</suppressions>

integration/base/pom.xml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,10 +107,15 @@
107107
</dependency>
108108
<dependency>
109109
<groupId>org.wiremock</groupId>
110-
<artifactId>wiremock</artifactId>
110+
<artifactId>wiremock-standalone</artifactId>
111111
<version>${wiremock.version}</version>
112112
<scope>provided</scope>
113113
</dependency>
114+
<dependency>
115+
<groupId>org.hamcrest</groupId>
116+
<artifactId>hamcrest</artifactId>
117+
<version>${hamcrest.version}</version>
118+
</dependency>
114119

115120
<!-- test dependencies -->
116121
<dependency>

performance/base/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@
107107
</dependency>
108108
<dependency>
109109
<groupId>org.wiremock</groupId>
110-
<artifactId>wiremock</artifactId>
110+
<artifactId>wiremock-standalone</artifactId>
111111
<version>${wiremock.version}</version>
112112
<scope>provided</scope>
113113
</dependency>

pom.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -79,6 +79,7 @@
7979
<smallrye.config.version>3.13.2</smallrye.config.version>
8080
<yasson.version>3.0.4</yasson.version>
8181
<wiremock.version>3.13.1</wiremock.version>
82+
<hamcrest.version>3.0</hamcrest.version>
8283

8384
<!-- disable by default (enabled by profile in CI) -->
8485
<dependency-check.skip>true</dependency-check.skip>

test/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
</dependency>
4040
<dependency>
4141
<groupId>org.wiremock</groupId>
42-
<artifactId>wiremock</artifactId>
42+
<artifactId>wiremock-standalone</artifactId>
4343
<version>${wiremock.version}</version>
4444
<scope>provided</scope>
4545
</dependency>

0 commit comments

Comments
 (0)