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
chore: update mockito version, and add byte-buddy dependency to fix r…
…unning tests on some versions of JDK

PiperOrigin-RevId: 839673064
  • Loading branch information
Mateusz Krawiec authored and copybara-github committed Dec 3, 2025
commit 440792cd7161f240c75e28997ac00402b12d614c
7 changes: 6 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
<google.genai.version>1.28.0</google.genai.version>
<protobuf.version>4.32.0</protobuf.version>
<junit.version>5.11.4</junit.version>
<mockito.version>5.17.0</mockito.version>
<mockito.version>5.20.0</mockito.version>
<java-websocket.version>1.6.0</java-websocket.version>
<jackson.version>2.19.0</jackson.version>
<okhttp.version>4.12.0</okhttp.version>
Expand Down Expand Up @@ -214,6 +214,11 @@
<artifactId>mockito-core</artifactId>
<version>${mockito.version}</version>
</dependency>
<dependency>
<groupId>net.bytebuddy</groupId>
<artifactId>byte-buddy</artifactId>
<version>1.18.2</version>
</dependency>
<dependency>
<groupId>org.jspecify</groupId>
<artifactId>jspecify</artifactId>
Expand Down