Skip to content

Update fess-parent to 14.19.2-SNAPSHOT and clean up maven-source-plug… #736

Update fess-parent to 14.19.2-SNAPSHOT and clean up maven-source-plug…

Update fess-parent to 14.19.2-SNAPSHOT and clean up maven-source-plug… #736

Workflow file for this run

# 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: Java CI with Maven
on:
push:
branches:
- master
- "*.x"
pull_request:
branches:
- master
- "*.x"
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
env:
PARENT_BRANCH: ${{ github.ref_name == 'master' && 'main' || github.ref_name }}
timeout-minutes: 15
steps:
- uses: actions/checkout@v4
- name: Set up JDK 17
uses: actions/setup-java@v4
with:
java-version: '17'
distribution: 'temurin'
- uses: actions/cache@v4
with:
path: ~/.m2/repository
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
restore-keys: |
${{ runner.os }}-maven-
- name: Checkout fess-parent
uses: actions/checkout@v4
with:
repository: codelibs/fess-parent
ref: ${{ env.PARENT_BRANCH }}
path: fess-parent
- name: Install fess-parent
run: |
cd fess-parent
mvn install -Dgpg.skip=true
- name: Download Plugins with Maven
run: mvn -B antrun:run --file pom.xml
- name: Build with Maven
run: mvn -B source:jar javadoc:jar package --file pom.xml
- name: Run Fess
run: bash src/test/resources/before_script.sh
- name: Run Integration Test
run: bash src/test/resources/run.sh