Skip to content

Update site.xml URL - from: http://awhitford.github.io/lombok.maven/ to: https://anthonywhitford.com/lombok.maven/ #289

Update site.xml URL - from: http://awhitford.github.io/lombok.maven/ to: https://anthonywhitford.com/lombok.maven/

Update site.xml URL - from: http://awhitford.github.io/lombok.maven/ to: https://anthonywhitford.com/lombok.maven/ #289

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: Maven Build
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
build:
strategy:
matrix:
java: [8, 11, 17]
os: [macos-latest, ubuntu-latest, windows-latest]
runs-on: ${{ matrix.os }}
name: Java ${{ matrix.java }}, OS ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- name: Set up JDK
uses: actions/setup-java@v3
with:
distribution: temurin
java-version: ${{ matrix.java }}
cache: maven
- name: Build with Maven
run: mvn -V -B install