Skip to content
Merged
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
13 changes: 13 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,8 @@
<httpasyncclient.version>4.1.4</httpasyncclient.version>
<httpmime.version>4.5.12</httpmime.version>
<tika-core.version>1.28.3</tika-core.version>
<!-- Override the commons-codec 1.11 pulled in transitively by httpclient -->
<commons-codec.version>1.22.0</commons-codec.version>

<jackson-databind.version>2.22.1</jackson-databind.version>

Expand Down Expand Up @@ -158,6 +160,17 @@
</dependency>
</dependencies>

<dependencyManagement>
<dependencies>
<!-- Force commons-codec above the vulnerable 1.11 that httpclient pulls in transitively -->
<dependency>
<groupId>commons-codec</groupId>
<artifactId>commons-codec</artifactId>
<version>${commons-codec.version}</version>
</dependency>
</dependencies>
</dependencyManagement>

<profiles>
<profile>
<id>unit-tests</id>
Expand Down
Loading