Skip to content

Commit

Permalink
Merge pull request #1358 from folio-org/OKAPI-1190-upgrade-testcontai…
Browse files Browse the repository at this point in the history
…ners-commons

OKAPI-1190: Upgrade testcontainers, commons-*
  • Loading branch information
julianladisch authored Sep 12, 2024
2 parents 65b3f3b + b953f07 commit 752cab2
Showing 1 changed file with 27 additions and 1 deletion.
28 changes: 27 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -120,10 +120,36 @@
<dependency>
<groupId>org.testcontainers</groupId>
<artifactId>testcontainers-bom</artifactId>
<version>1.19.5</version>
<version>1.20.1</version>
<type>pom</type>
<scope>import</scope>
</dependency>
<!-- testcontainers doesn't bump vulnerable commons-compress
https://github.com/testcontainers/testcontainers-java/pull/8354#issuecomment-1957345903 -->
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-compress</artifactId>
<version>1.27.0</version>
</dependency>
<!-- testcontainers requires a recent commons-lang3, io.rest-assured:xml-path downgrades it to 3.11 -->
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
<version>3.16.0</version>
</dependency>
<!-- unmaintained raml-tester doesn't bump vulnerable commons-fileupload
https://github.com/nidi3/raml-tester -->
<dependency>
<groupId>commons-fileupload</groupId>
<artifactId>commons-fileupload</artifactId>
<version>1.5</version>
</dependency>
<!-- unmaintained raml-tester uses old commons-io 2.11.0, testcontainers requires a more recent one -->
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
<version>2.16.1</version>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-bom</artifactId>
Expand Down

0 comments on commit 752cab2

Please sign in to comment.