Skip to content

Commit

Permalink
make code compilable with OpenJDK21
Browse files Browse the repository at this point in the history
AssertJ 3.25.1 has a byte-buddy version that can handle Java 21 class
files.
The update to Mockito 5.11 allows us to get rid of the mockito-inline
dependency.
This only affects testing of JavaFixture.
  • Loading branch information
akutschera committed Mar 23, 2024
1 parent 5acbeff commit aef4667
Showing 1 changed file with 3 additions and 8 deletions.
11 changes: 3 additions & 8 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,8 @@
<maven-gpg-plugin.version>1.5</maven-gpg-plugin.version>
<nexus-staging-maven-plugin.version>1.6.8</nexus-staging-maven-plugin.version>
<junit-jupiter-engine.version>5.5.1</junit-jupiter-engine.version>
<mockito.version>4.5.1</mockito.version>
<mockito.version>5.11.0</mockito.version>
<assertj-core.version>3.25.1</assertj-core.version>
</properties>

<dependencies>
Expand Down Expand Up @@ -80,7 +81,7 @@
<dependency>
<groupId>org.assertj</groupId>
<artifactId>assertj-core</artifactId>
<version>3.23.1</version>
<version>${assertj-core.version}</version>
<scope>test</scope>
</dependency>
<dependency>
Expand All @@ -89,12 +90,6 @@
<version>${mockito.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-inline</artifactId>
<version>${mockito.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.hibernate</groupId>
<version>6.2.1.Final</version>
Expand Down

0 comments on commit aef4667

Please sign in to comment.