Skip to content

Bump org.apache.maven.plugins:maven-javadoc-plugin from 3.10.0 to 3.11.1 #35

Bump org.apache.maven.plugins:maven-javadoc-plugin from 3.10.0 to 3.11.1

Bump org.apache.maven.plugins:maven-javadoc-plugin from 3.10.0 to 3.11.1 #35

Workflow file for this run

name: Build Xsmp Eclipse
on:
push:
branches:
- "main"
tags:
- "v*.*.*"
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up JDK
uses: actions/setup-java@v4
with:
java-version: 17
distribution: temurin
- name: Setup Maven Action
uses: s4u/[email protected]
# Maven build start
- name: Cache Maven packages
uses: actions/cache@v4
with:
path: ~/.m2
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
restore-keys: ${{ runner.os }}-m2
- name: Create P2 update repository
run: |
mvn clean package
cp releng/repository/repo-index.html releng/repository/target/repository/index.html
- name: Archive P2 Repository
uses: actions/upload-artifact@v4
with:
name: p2-update-site
path: |
releng/repository/target/repository
retention-days: 14
- name: Purge Artifacts from Cache
run: |
mvn dependency:purge-local-repository -ntp
# Maven build end
- name: Publish to GH packages
uses: peaceiris/actions-gh-pages@v4
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: releng/repository/target/repository/
destination_dir: download/updates/${{ github.ref_name }}