Skip to content

Commit 4f36867

Browse files
committed
Upgrade mockito dep to fix build on JDK 21
1 parent 0a5544f commit 4f36867

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

auth-providers/oauth2-provider/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@
5353

5454
<dependency>
5555
<groupId>org.mockito</groupId>
56-
<artifactId>mockito-inline</artifactId>
56+
<artifactId>mockito-core</artifactId>
5757
<scope>test</scope>
5858
</dependency>
5959

coordination/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
</dependency>
3838
<dependency>
3939
<groupId>org.mockito</groupId>
40-
<artifactId>mockito-inline</artifactId>
40+
<artifactId>mockito-core</artifactId>
4141
<scope>test</scope>
4242
</dependency>
4343
</dependencies>

core/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@
5656

5757
<dependency>
5858
<groupId>org.mockito</groupId>
59-
<artifactId>mockito-inline</artifactId>
59+
<artifactId>mockito-core</artifactId>
6060
<scope>test</scope>
6161
</dependency>
6262

pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
<junit5.version>5.9.3</junit5.version>
4040
<log4j2.version>2.17.2</log4j2.version>
4141
<gson.version>2.8.9</gson.version>
42-
<mockito.version>4.11.0</mockito.version>
42+
<mockito.version>5.11.0</mockito.version>
4343
<testcontainers.version>1.19.3</testcontainers.version>
4444
</properties>
4545

@@ -108,7 +108,7 @@
108108

109109
<dependency>
110110
<groupId>org.mockito</groupId>
111-
<artifactId>mockito-inline</artifactId>
111+
<artifactId>mockito-core</artifactId>
112112
<version>${mockito.version}</version>
113113
</dependency>
114114
<dependency>

tests/common/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@
4747

4848
<dependency>
4949
<groupId>org.mockito</groupId>
50-
<artifactId>mockito-inline</artifactId>
50+
<artifactId>mockito-core</artifactId>
5151
<scope>test</scope>
5252
</dependency>
5353
</dependencies>

0 commit comments

Comments
 (0)