Skip to content

Commit

Permalink
Switching crosschecks to JDK 24-ea (#855)
Browse files Browse the repository at this point in the history
  • Loading branch information
ilgrosso authored Oct 25, 2024
1 parent 9bf6089 commit 938f006
Show file tree
Hide file tree
Showing 2 changed files with 43 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/crosschecks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
fail-fast: false
matrix:
language: ['java']
java: [ '21', '23-ea' ]
java: [ '21', '24-ea' ]
os: [ubuntu-latest, windows-latest, macos-latest]

steps:
Expand Down
42 changes: 42 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2341,6 +2341,48 @@ under the License.
</plugins>
</build>
</profile>

<profile>
<id>jdk24</id>

<activation>
<jdk>[24,)</jdk>
</activation>

<properties>
<mockito.version>5.14.2</mockito.version>
<byte-buddy.version>1.15.7</byte-buddy.version>
</properties>

<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-junit-jupiter</artifactId>
<version>${mockito.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
<version>${mockito.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>net.bytebuddy</groupId>
<artifactId>byte-buddy</artifactId>
<version>${byte-buddy.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>net.bytebuddy</groupId>
<artifactId>byte-buddy-agent</artifactId>
<version>${byte-buddy.version}</version>
<scope>test</scope>
</dependency>
</dependencies>
</dependencyManagement>
</profile>
</profiles>

<modules>
Expand Down

0 comments on commit 938f006

Please sign in to comment.