Adds Feature #1568 - [OSGi] Opting in to Service Loader Mediator #1786
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This workflow will build a Java project with Maven | |
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven | |
name: JDK-EA Javadoc | |
on: [push, pull_request] | |
jobs: | |
applications: | |
name: Unit Test EA | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-latest] | |
java-version: [23] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Git Checkout | |
uses: actions/checkout@v4 | |
- name: Download JDK ${{ matrix.java-version }} from jdk.java.net | |
uses: oracle-actions/setup-java@v1 | |
id: download-jdk | |
with: | |
website: jdk.java.net | |
release: ${{ matrix.java-version }} | |
- name: 'Print outputs' | |
shell: bash | |
run: | | |
echo 'Outputs' | |
echo "steps.download-jdk.outputs.archive = ${{ steps.download-jdk.outputs.archive }}" | |
echo "steps.download-jdk.outputs.version = ${{ steps.download-jdk.outputs.version }}" | |
- name: Set Maven Wrapper | |
run: mvn -N wrapper:wrapper -Dmaven=3.6.3 --no-transfer-progress | |
- name: 'JDK Version' | |
run: java --version | |
- name: Build Generator | |
run: ./mvnw -Dsurefire.useFile=false -DskipTests -Denforcer.skip=true clean install -pl 'eclipse-collections-code-generator,eclipse-collections-code-generator-maven-plugin' --no-transfer-progress | |
- name: Javadoc | |
run: ./mvnw -Dsurefire.useFile=false -DskipTests -Denforcer.skip=true clean javadoc:aggregate install -pl '!unit-tests,!serialization-tests,!jcstress-tests,!junit-trait-runner,!unit-tests-java8,!test-coverage' --no-transfer-progress | |
env: | |
MAVEN_OPTS: "-Xmx2g" |