Skip to content
This repository was archived by the owner on Apr 22, 2025. It is now read-only.

Commit 95e3a2d

Browse files
bestbeforetodaydenyeart
authored andcommitted
Update dependencies to address CVE-2023-3635
Signed-off-by: Mark S. Lewis <[email protected]>
1 parent e59b6d6 commit 95e3a2d

File tree

2 files changed

+18
-16
lines changed

2 files changed

+18
-16
lines changed

dependency-suppressions.xml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,4 +55,10 @@
5555
<packageUrl regex="true">^pkg:maven/io\.opentelemetry\.instrumentation/opentelemetry\-grpc\-1\.6@.*$</packageUrl>
5656
<cve>CVE-2023-4785</cve>
5757
</suppress>
58+
<suppress>
59+
<notes><![CDATA[
60+
CVE relates to attack on gRPC servers (not clients) and is dependent on the Netty version used
61+
]]></notes>
62+
<cve>CVE-2023-44487</cve>
63+
</suppress>
5864
</suppressions>

pom.xml

Lines changed: 12 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -38,22 +38,22 @@
3838
<properties>
3939
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
4040
<javaVersion>8</javaVersion>
41-
<javadoc.version>3.5.0</javadoc.version>
41+
<javadoc.version>3.6.3</javadoc.version>
4242
</properties>
4343

4444
<dependencyManagement>
4545
<dependencies>
4646
<dependency>
4747
<groupId>io.cucumber</groupId>
4848
<artifactId>cucumber-bom</artifactId>
49-
<version>7.13.0</version>
49+
<version>7.14.1</version>
5050
<type>pom</type>
5151
<scope>import</scope>
5252
</dependency>
5353
<dependency>
5454
<groupId>org.junit</groupId>
5555
<artifactId>junit-bom</artifactId>
56-
<version>5.10.0</version>
56+
<version>5.10.1</version>
5757
<type>pom</type>
5858
<scope>import</scope>
5959
</dependency>
@@ -108,15 +108,10 @@
108108
<artifactId>cucumber-junit</artifactId>
109109
<scope>test</scope>
110110
</dependency>
111-
<dependency><!-- override the version under cloudant-client -->
112-
<groupId>commons-codec</groupId>
113-
<artifactId>commons-codec</artifactId>
114-
<version>1.16.0</version>
115-
</dependency>
116111
<dependency>
117112
<groupId>com.ibm.cloud</groupId>
118113
<artifactId>cloudant</artifactId>
119-
<version>0.5.4</version>
114+
<version>0.8.1</version>
120115
</dependency>
121116
</dependencies>
122117

@@ -126,15 +121,15 @@
126121
<plugins>
127122
<plugin>
128123
<artifactId>maven-clean-plugin</artifactId>
129-
<version>3.3.1</version>
124+
<version>3.3.2</version>
130125
</plugin>
131126
<plugin>
132127
<artifactId>maven-site-plugin</artifactId>
133128
<version>3.12.1</version>
134129
</plugin>
135130
<plugin>
136131
<artifactId>maven-project-info-reports-plugin</artifactId>
137-
<version>3.4.5</version>
132+
<version>3.5.0</version>
138133
</plugin>
139134
<!-- see http://maven.apache.org/ref/current/maven-core/default-bindings.html#Plugin_bindings_for_jar_packaging -->
140135
<plugin>
@@ -160,7 +155,7 @@
160155
</plugin>
161156
<plugin>
162157
<artifactId>maven-surefire-plugin</artifactId>
163-
<version>3.1.2</version>
158+
<version>3.2.2</version>
164159
<configuration>
165160
<excludes>
166161
<exclude>**/scenario/**</exclude>
@@ -233,7 +228,7 @@
233228
<plugin>
234229
<groupId>org.apache.maven.plugins</groupId>
235230
<artifactId>maven-enforcer-plugin</artifactId>
236-
<version>3.3.0</version>
231+
<version>3.4.1</version>
237232
<executions>
238233
<execution>
239234
<id>enforce-version</id>
@@ -329,7 +324,7 @@
329324
<plugin>
330325
<groupId>org.apache.maven.plugins</groupId>
331326
<artifactId>maven-checkstyle-plugin</artifactId>
332-
<version>3.3.0</version>
327+
<version>3.3.1</version>
333328
<configuration>
334329
<configLocation>checkstyle.xml</configLocation>
335330
<consoleOutput>true</consoleOutput>
@@ -341,7 +336,7 @@
341336
<dependency>
342337
<groupId>com.puppycrawl.tools</groupId>
343338
<artifactId>checkstyle</artifactId>
344-
<version>10.12.2</version>
339+
<version>10.12.5</version>
345340
</dependency>
346341
</dependencies>
347342
<executions>
@@ -364,7 +359,7 @@
364359
<plugin>
365360
<groupId>org.owasp</groupId>
366361
<artifactId>dependency-check-maven</artifactId>
367-
<version>8.4.0</version>
362+
<version>9.0.2</version>
368363
<configuration>
369364
<skipProvidedScope>true</skipProvidedScope>
370365
<skipTestScope>true</skipTestScope>
@@ -373,6 +368,7 @@
373368
<suppressionFiles>
374369
<suppressionFile>dependency-suppressions.xml</suppressionFile>
375370
</suppressionFiles>
371+
<nvdApiKey>${env.NVD_API_KEY}</nvdApiKey>
376372
</configuration>
377373
<executions>
378374
<execution>

0 commit comments

Comments
 (0)