Skip to content

Commit 4d55b9e

Browse files
Addressed dependencies with security issues
Specifying newer versions of transitive dependencies where SNYK identified security issues are present
1 parent 21bccf7 commit 4d55b9e

File tree

1 file changed

+15
-1
lines changed

1 file changed

+15
-1
lines changed

refactor-first-maven-plugin/pom.xml

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,13 +28,27 @@
2828
<version>3.2.2</version>
2929
</dependency>
3030

31+
<!-- Needed since Doxia 1.9.2 and httpclient use an insecure version -->
32+
<dependency>
33+
<groupId>commons-codec</groupId>
34+
<artifactId>commons-codec</artifactId>
35+
<version>1.15</version>
36+
</dependency>
37+
3138
<!-- Needed since Doxia 1.9.2 uses an insecure version -->
3239
<dependency>
3340
<groupId>org.apache.httpcomponents</groupId>
3441
<artifactId>httpclient</artifactId>
3542
<version>4.5.13</version>
3643
</dependency>
3744

45+
<!-- Needed since Doxia 1.9.2 uses an insecure version -->
46+
<dependency>
47+
<groupId>org.codehaus.plexus</groupId>
48+
<artifactId>plexus-utils</artifactId>
49+
<version>3.3.0</version>
50+
</dependency>
51+
3852
<!-- Doxia -->
3953
<!-- Needed since maven-reporting-impl brings in Struts 1.3.8 jars that have CVSS > 8 -->
4054
<dependency>
@@ -91,7 +105,7 @@
91105
<dependency>
92106
<groupId>junit</groupId>
93107
<artifactId>junit</artifactId>
94-
<version>4.11</version>
108+
<version>4.13.2</version>
95109
<scope>test</scope>
96110
</dependency>
97111

0 commit comments

Comments
 (0)