Skip to content
Draft
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
12 changes: 12 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -160,6 +160,17 @@
<artifactId>xpp3</artifactId>
<version>${project.xpp3.version}</version>
</dependency>
<!--
Force commons-codec to 1.14 to resolve vulnerability (SNYK-JAVA-COMMONSCODEC-561518)
introduced transitively by httpclient 4.5.14 (which defaults to 1.11).
We cannot upgrade httpclient further because 4.5.14 is the latest version on the 4.x branch,
and upgrading to 5.x would be a breaking change.
-->
<dependency>
<groupId>commons-codec</groupId>
<artifactId>commons-codec</artifactId>
<version>${project.commons-codec.version}</version>
</dependency>
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpclient</artifactId>
Expand Down Expand Up @@ -559,6 +570,7 @@
<project.xpp3.version>1.1.4c</project.xpp3.version>
<project.apache-httpclient-4.version>4.5.14</project.apache-httpclient-4.version>
<project.apache-httpcore-4.version>4.4.16</project.apache-httpcore-4.version>
<project.commons-codec.version>1.14</project.commons-codec.version>
<project.apache-httpclient-5.version>5.3.1</project.apache-httpclient-5.version>
<project.apache-httpcore-5.version>5.2.5</project.apache-httpcore-5.version>
<project.opencensus.version>0.31.1</project.opencensus.version>
Expand Down
Loading