Skip to content
This repository has been archived by the owner on Sep 25, 2024. It is now read-only.

Add info that project is currently not maintained. #51

Add info that project is currently not maintained.

Add info that project is currently not maintained. #51

Workflow file for this run

# Default build validation "clean verify" for non-experimental branches
name: Build
on:
push:
branches-ignore:
- 'experimental/**'
pull_request:
branches-ignore:
- 'experimental/**'
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup JDK
uses: actions/setup-java@v4
with:
distribution: temurin
java-version: 8
cache: maven
- name: Build and verify
run: mvn -s ./.maven-settings.xml -B -U clean verify