Skip to content

fix annotation generation for Kotlin 2.4.0 #65

fix annotation generation for Kotlin 2.4.0

fix annotation generation for Kotlin 2.4.0 #65

Workflow file for this run

# Copyright (c) 2025 Contributors to the Eclipse Foundation
#
# See the NOTICE file(s) distributed with this work for additional
# information regarding copyright ownership.
#
# This program and the accompanying materials are made available under the
# terms of the Eclipse Public License 2.0 which is available at
# http://www.eclipse.org/legal/epl-2.0
#
# SPDX-License-Identifier: EPL-2.0
name: java-build
on:
push:
branches:
- main
- release-*
# Enable manually triggering
workflow_dispatch:
# Run build for any PR
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Set up JDK 25
uses: actions/setup-java@v5
with:
distribution: 'temurin'
java-version: 25
cache: 'maven'
- name: build with Maven
run: mvn verify javadoc:jar source:jar --batch-mode --errors --quiet -DcreateJavadoc=true --file pom.xml