Skip to content

Commit

Permalink
chore(deps): update test dependencies to support Java 21
Browse files Browse the repository at this point in the history
  • Loading branch information
SpraxDev committed May 1, 2024
1 parent dd08670 commit 89ee042
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,7 @@
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter</artifactId>
<version>5.10.1</version>
<version>5.10.2</version>
<scope>test</scope>
</dependency>

Expand All @@ -208,5 +208,12 @@
<version>4.11.0</version>
<scope>test</scope>
</dependency>
<dependency>
<!-- bytebuddy is used by mockito; We are declaring a newer version for Java 21 support (remove if mockito supports Java 21) -->
<groupId>net.bytebuddy</groupId>
<artifactId>byte-buddy</artifactId>
<version>1.14.14</version>
<scope>test</scope>
</dependency>
</dependencies>
</project>

0 comments on commit 89ee042

Please sign in to comment.