Skip to content

Bump kotlin.version from 1.9.21 to 2.0.0 #688

Bump kotlin.version from 1.9.21 to 2.0.0

Bump kotlin.version from 1.9.21 to 2.0.0 #688

Workflow file for this run

name: Build with JDK 21
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
java: [ '21', '22' ]
architecture: [ 'x64' ]
name: Build with JDK ${{ matrix.java }} on ${{ matrix.architecture }}
steps:
- uses: actions/checkout@v4
- name: Setup JDK
uses: actions/setup-java@v4
with:
distribution: 'oracle'
java-version: ${{ matrix.java }}
architecture: ${{ matrix.architecture }}
cache: 'maven'
- name: Build with Maven
run: mvn package