We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bf18891 commit f536d89Copy full SHA for f536d89
.github/workflows/build.yml
@@ -8,7 +8,7 @@ jobs:
8
9
strategy:
10
matrix:
11
- java-version: [8, 11, 17]
+ java-version: [8, 11, 17, 21]
12
13
steps:
14
- uses: actions/checkout@v3
pom.xml
@@ -272,6 +272,12 @@
272
<version>4.11.0</version>
273
<scope>test</scope>
274
</dependency>
275
+ <!-- Support Mockito 4.x for Java 21 -->
276
+ <dependency>
277
+ <groupId>net.bytebuddy</groupId>
278
+ <artifactId>byte-buddy</artifactId>
279
+ <version>1.14.11</version>
280
+ </dependency>
281
<dependency>
282
<groupId>commons-io</groupId>
283
<artifactId>commons-io</artifactId>
0 commit comments