Adds Feature #1568 - [OSGi] Opting in to Service Loader Mediator #6
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: JavaDoc | |
on: [push, pull_request] | |
jobs: | |
applications: | |
name: Javadoc ${{ matrix.java-version }} | |
strategy: | |
matrix: | |
os: [ubuntu-latest] | |
java-version: [11] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Git Checkout | |
uses: actions/checkout@v4 | |
- name: Set Maven Wrapper | |
run: mvn -N wrapper:wrapper -Dmaven=3.6.3 --no-transfer-progress | |
- name: Set JDK ${{ matrix.java-version }} | |
uses: actions/setup-java@v4 | |
with: | |
distribution: 'zulu' | |
java-version: ${{ matrix.java-version }} | |
- name: JavaDoc Aggregate | |
run: ./mvnw -Dsurefire.useFile=false -DskipTests -Denforcer.skip=true clean install javadoc:aggregate -pl '!unit-tests,!serialization-tests,!jcstress-tests,!junit-trait-runner,!unit-tests-java8,!test-coverage,!p2-repository,!org.eclipse.collections:org.eclipse.collections' --no-transfer-progress | |
env: | |
MAVEN_OPTS: "-Xmx1g" | |
- name: JavaDoc Jar | |
run: ./mvnw -Dsurefire.useFile=false -DskipTests -Denforcer.skip=true clean install javadoc:jar -pl '!unit-tests,!serialization-tests,!jcstress-tests,!junit-trait-runner,!unit-tests-java8,!test-coverage,!p2-repository,!org.eclipse.collections:org.eclipse.collections' --no-transfer-progress | |
env: | |
MAVEN_OPTS: "-Xmx1g" |