Skip to content

Enhancements to ElementW and HtmlTag #19

Enhancements to ElementW and HtmlTag

Enhancements to ElementW and HtmlTag #19

Workflow file for this run

# This workflow will build a Java project with Maven, and cache/restore any dependencies to improve the workflow execution time
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-java-with-maven
name: Build
on:
push:
pull_request:
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: '25'
distribution: 'temurin'
cache: maven
- name: Maven Settings File
uses: whelk-io/maven-settings-xml-action@v22
with:
servers: '[{"id": "github-parent", "username": "emays", "password": "${{secrets.READ_PACKAGES_TOKEN}}"}]'
- name: Build with Maven
run: |
mvn verify -B \
-Pgithub-repo \
-Dorg.slf4j.simpleLogger.log.org.apache.maven.cli.transfer.Slf4jMavenTransferListener=warn