Skip to content

Commit f536d89

Browse files
SP-768 Java SDK - Support Java 21
1 parent bf18891 commit f536d89

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88

99
strategy:
1010
matrix:
11-
java-version: [8, 11, 17]
11+
java-version: [8, 11, 17, 21]
1212

1313
steps:
1414
- uses: actions/checkout@v3

pom.xml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -272,6 +272,12 @@
272272
<version>4.11.0</version>
273273
<scope>test</scope>
274274
</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>
275281
<dependency>
276282
<groupId>commons-io</groupId>
277283
<artifactId>commons-io</artifactId>

0 commit comments

Comments
 (0)